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
Hi I have a problem issue with using the exponential function within infiniteopt models.
Describe the bug
an exponential function with infinite parameters in the infinite model causes the exponential function to be doubled in the output.
To Reproduce
using InfiniteOpt
#Setup the model#create a new model object
model =InfiniteModel();
#add any infinite parameter@infinite_parameter(model, q in [-5, 5], num_supports =11)
#try any function with an exponentialprint(exp(-(q-1)^4))
output then has the exponential doubled
exp(-exp((q -1)^4)
Desktop (please complete the following information):
OS linux
InfiniteOpt v0.5.9
Julia Version: both in 1.11.3 and 1.10.4
The text was updated successfully, but these errors were encountered:
Yep, this is just a printing bug in InfiniteOpt's legacy NL interface. The developmental version no longer has this problem. My schedule has been busy, but I hope to finish the next release soon.
Hi I have a problem issue with using the exponential function within infiniteopt models.
Describe the bug
an exponential function with infinite parameters in the infinite model causes the exponential function to be doubled in the output.
To Reproduce
output then has the exponential doubled
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: