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
Printing is using the default of 8-decimal precision when using the print-function from inside a simit program.
This is inadequate if one where to transfer results for debugging purposes between environments (i.e. matlab). Calling std::setprecision(16) from the #include <iomanip> did not help.
Would it be possible to add a function to either the Program-class or Function-class to accommodate this need? Perhaps give the print function itself an optional precision argument?
The text was updated successfully, but these errors were encountered:
Printing is using the default of 8-decimal precision when using the
print
-function from inside a simit program.This is inadequate if one where to transfer results for debugging purposes between environments (i.e. matlab). Calling
std::setprecision(16)
from the#include <iomanip>
did not help.Would it be possible to add a function to either the
Program
-class orFunction
-class to accommodate this need? Perhaps give theprint
function itself an optional precision argument?The text was updated successfully, but these errors were encountered: