We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Further investigation of the failing macOS CI tests has revealed what appears a genuine CUTEst bug in u/creport():
u/creport()
>>> import pycutest >>> p = pycutest.import_problem('BOX2') 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 >>> >>> p.report() {'f': 0, 'g': 5, 'H': 0, 'Hprod': 0, 'tsetup': 0.0, 'trun': 0.0, 'c': None, 'cg': None, 'cH': None} 0.000000 5.125000 0.000000 0.000000 0.000000 0.000000 0.000000 >>> p.report() {'f': 0, 'g': 6, 'H': 0, 'Hprod': 0, 'tsetup': 0.0, 'trun': 0.0, 'c': None, 'cg': None, 'cH': None} 0.000000 6.812500 0.000000 0.000000 0.000000 0.000000 0.000000 >>> p.report() {'f': 0, 'g': 7, 'H': 0, 'Hprod': 0, 'tsetup': 0.0, 'trun': 0.0, 'c': None, 'cg': None, 'cH': None} 0.000000 7.812500 0.000000 0.000000 0.000000 0.000000 0.000000 >>> p.report() {'f': 0, 'g': 8, 'H': 0, 'Hprod': 0, 'tsetup': 0.0, 'trun': 0.0, 'c': None, 'cg': None, 'cH': None} 0.000000 8.500000 0.000000 0.000000 0.000000 0.000000 0.000000 >>>
The intermediate prints are the actual values of calls as returned by the C interface.
It turns out the issue is due to the time array passed in to u/creport() being too small in the C interface.
The text was updated successfully, but these errors were encountered:
jfowkes
Successfully merging a pull request may close this issue.
Further investigation of the failing macOS CI tests has revealed what appears a genuine CUTEst bug in
u/creport()
:The intermediate prints are the actual values of calls as returned by the C interface.
It turns out the issue is due to the time array passed in to
u/creport()
being too small in the C interface.The text was updated successfully, but these errors were encountered: