Dear,

First, thanks very much for the support you provide.

I have a preocupation. I compile my code with option -VERBOSE_CHECK and I
had this error: "Generated a dynamic check for the method call"
I read the language specification, but I didn't understand the error and
how to fix it.
Here below the code. the errors appears for the line with a (*) and
Bold/Underlined.

Basically, because It's not possible to merge two region or to remove a
region from another,
I put all the point in a ArrayList of Point. and I want to create a array
of dim 2 of my point and store them inside.

Thanks for your support

Ps. It's hard to read all post, does'it exist a way to seach in the
users-archive by using a keyword ?

Thanks

var m:Array[ArrayList[Point]] =  new Array[ArrayList[Point]]((1..P)*(1..P));
        for(i in 1..P){
            val ki = i;
            set(ki);
            for(j in ki..P){

                val kj = j;
             *(*)   m(kj,ki) = buildDistriMap(kj);*
                if(ki != kj){
            * (*)    m(ki,kj) = myPoint;*
                }
            }
        }
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
X10-users mailing list
X10-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/x10-users

Reply via email to