1.

What Is Circular Dependency And How To Avoid This Problem ?

Answer»

Over SPECIFYING the solving order might result in circular DEPENDENCY, for which there is no solution, and the constraint solver might give error/warning or no constraining. Example

1....
2.int x, y, z;
3.constraint XYZ {
4.solve x before y;
5.solve y before z;
6.solve z before x;
7.....
8.}

Over specifying the solving order might result in circular dependency, for which there is no solution, and the constraint solver might give error/warning or no constraining. Example

1....
2.int x, y, z;
3.constraint XYZ {
4.solve x before y;
5.solve y before z;
6.solve z before x;
7.....
8.}



Discussion

No Comment Found