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
I run the examples/nsga2_multi_objectiva.py, it raise when run print(sol).
print(sol)
I found it caused by
line98 ... inform_val = self.optInform["value"] line99 ... inform_text = self.optInform["text"]
in pyOpt_solution.py.
pyOpt_solution.py
Becasue in pyNSGA2.py:
pyNSGA2.py
line183... sol_inform = {}
The sol_inform doesn't have key value and text. I temporarily solved it by replacing sol_inform = {} with sol_inform = {"value":"","text":""}.
sol_inform
value
text
sol_inform = {}
sol_inform = {"value":"","text":""}
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I run the examples/nsga2_multi_objectiva.py, it raise when run
print(sol)
.I found it caused by
in
pyOpt_solution.py
.Becasue in
pyNSGA2.py
:The
sol_inform
doesn't have keyvalue
andtext
.I temporarily solved it by replacing
sol_inform = {}
withsol_inform = {"value":"","text":""}
.The text was updated successfully, but these errors were encountered: