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

Error when dividing variable by negative number #41

Closed
abe-mart opened this issue Sep 29, 2018 · 0 comments
Closed

Error when dividing variable by negative number #41

abe-mart opened this issue Sep 29, 2018 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@abe-mart
Copy link
Contributor

Dividing a Gekko variable by a negative number in an intermediate definition causes a "Multiple operators" error. It looks like it needs another set of parenthesis.

from gekko import GEKKO

m = GEKKO()

a = m.Var()
b = -1

c = m.Intermediate(a/b)

m.solve()
*** Error in syntax of function string: Multiple operators
@loganbeal loganbeal self-assigned this Oct 1, 2018
@loganbeal loganbeal added the bug Something isn't working label Oct 1, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants