We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The contractor Ctc_3BCid does not behave as expected when it contracts a degenerated IntervalVector.
Ctc_3BCid
IntervalVector
/* contractors for the unit disk: x^2 + y^2 <= 1 */ Function f("x","y","x^2 + y^2 - 1"); Interval interval(NEG_INFINITY,0); CtcFwdBwd c_fwdbwd(f,interval); Ctc3BCid c_3bcid(c_fwdbwd); /* box degenerated to the point (-5,0) */ double _x[2]={-5,0}; Vector x(2,_x); IntervalVector box(x); /* contraction of the box */ c_3bcid.contract(box); /* display (-5,0) instead of empty vector */ cout << "Result of the contraction with Ctc3BCid composed with CtcFwdBwd:" << endl; cout << '\t' << box << endl;
Calling c_fwdbwd.contract(box) instead of c_3bcid.contract(box) actually returns an empty vector.
c_fwdbwd.contract(box)
c_3bcid.contract(box)
empty vector
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The contractor
Ctc_3BCid
does not behave as expected when it contracts a degeneratedIntervalVector
.Calling
c_fwdbwd.contract(box)
instead ofc_3bcid.contract(box)
actually returns anempty vector
.The text was updated successfully, but these errors were encountered: