damar-wicaksono / uqtestfuns

A Python3 library of test functions from the uncertainty quantification community with a common interface for validation and benchmarking purposes.
https://uqtestfuns.readthedocs.io/en/latest/
MIT License
8 stars 0 forks source link

Remove bracket in the application tags when printing out an instance of test functions #396

Closed damar-wicaksono closed 2 weeks ago

damar-wicaksono commented 2 weeks ago

Currently the string representation of a test function is as follows:

>>> my_testfun = uqtf.Borehole()
>>> print(my_testfun)
Function ID      : Borehole
Input Dimension  : 8 (fixed)
Output Dimension : 1
Parameterized    : False
Description      : Borehole function from Harper and Gupta (1983)
Applications     : ['metamodeling', 'sensitivity']

The content of "Applications" should be printed out without brackets and without the quotation marks.

damar-wicaksono commented 2 weeks ago

This issue has been resolved by PR #397.