You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We try to reproduce crosscuts for a function that have different bounds depending on the input variables. It seems that in lines 88 and 89 of the CrossCutFunction.py file, crossCutLowerBound = [lowerBound[i], lowerBound[j]] crossCutUpperBound = [upperBound[i], upperBound[j]] ;
the indices i and j should be inversed : crossCutLowerBound = [lowerBound[j], lowerBound[i]] crossCutUpperBound = [upperBound[j], upperBound[i]]
to give appropriate bounds on the cross-cut plots.
Regards,
The text was updated successfully, but these errors were encountered:
Hello,
We try to reproduce crosscuts for a function that have different bounds depending on the input variables. It seems that in lines 88 and 89 of the CrossCutFunction.py file,
crossCutLowerBound = [lowerBound[i], lowerBound[j]]
crossCutUpperBound = [upperBound[i], upperBound[j]]
;the indices
i
andj
should be inversed :crossCutLowerBound = [lowerBound[j], lowerBound[i]]
crossCutUpperBound = [upperBound[j], upperBound[i]]
to give appropriate bounds on the cross-cut plots.
Regards,
The text was updated successfully, but these errors were encountered: