Closed MateusStano closed 1 month ago
Currently, lambda defined Function are not correctly saved when using savetxt. The problem was that a np.array was being passed for the evaluation of the lambda.
Function
savetxt
The solution was to use Function's get_value_opt to call on the lambdas.
get_value_opt
Tests passing?
they are passing locally. The problem on actions is unrelated to the PR
Description
Currently, lambda defined
Function
are not correctly saved when usingsavetxt
. The problem was that a np.array was being passed for the evaluation of the lambda.The solution was to use
Function
'sget_value_opt
to call on the lambdas.