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):