Skip to content
New issue

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

Creating several parameters with some missing bounds #295

Open
Jhsmit opened this issue Feb 6, 2020 · 0 comments
Open

Creating several parameters with some missing bounds #295

Jhsmit opened this issue Feb 6, 2020 · 0 comments

Comments

@Jhsmit
Copy link
Collaborator

Jhsmit commented Feb 6, 2020

from symfit import parameters

parameters('a b c', min=[1, 2, None], max=[5, None, None])

Results in:

TypeError: '>' not supported between instances of 'int' and 'NoneType'

While

from symfit import Parameter

Parameter('a', min=1, max=None)

is fine

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant