Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
PDFO
pdfo
Commits
541dfae4
Commit
541dfae4
authored
Feb 05, 2021
by
Tom M. Ragonneau
Browse files
New handler for the linear equality constraints
parent
ca08edd9
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
529 additions
and
127 deletions
+529
-127
python/interfaces/pdfo/_bobyqa.py
python/interfaces/pdfo/_bobyqa.py
+2
-0
python/interfaces/pdfo/_cobyla.py
python/interfaces/pdfo/_cobyla.py
+2
-0
python/interfaces/pdfo/_dependencies.py
python/interfaces/pdfo/_dependencies.py
+517
-127
python/interfaces/pdfo/_lincoa.py
python/interfaces/pdfo/_lincoa.py
+2
-0
python/interfaces/pdfo/_newuoa.py
python/interfaces/pdfo/_newuoa.py
+2
-0
python/interfaces/pdfo/_pdfo.py
python/interfaces/pdfo/_pdfo.py
+2
-0
python/interfaces/pdfo/_uobyqa.py
python/interfaces/pdfo/_uobyqa.py
+2
-0
No files found.
python/interfaces/pdfo/_bobyqa.py
View file @
541dfae4
...
...
@@ -62,6 +62,8 @@ def bobyqa(fun, x0, args=(), bounds=None, options=None):
flag does not interfere with the warning and error printing.
classical: bool, optional
Flag indicating whether to call the classical Powell code or not. By default, it is False.
eliminate_lin_eq: bool, optional
Flag indicating whether the linear equality constraints should be eliminated. By default, it is True.
debug: bool, optional
Debugging flag. By default, it is False.
chkfunval: bool, optional
...
...
python/interfaces/pdfo/_cobyla.py
View file @
541dfae4
...
...
@@ -70,6 +70,8 @@ def cobyla(fun, x0, args=(), bounds=None, constraints=(), options=None):
flag does not interfere with the warning and error printing.
classical: bool, optional
Flag indicating whether to call the classical Powell code or not. By default, it is False.
eliminate_lin_eq: bool, optional
Flag indicating whether the linear equality constraints should be eliminated. By default, it is True.
debug: bool, optional
Debugging flag. By default, it is False.
chkfunval: bool, optional
...
...
python/interfaces/pdfo/_dependencies.py
View file @
541dfae4
This diff is collapsed.
Click to expand it.
python/interfaces/pdfo/_lincoa.py
View file @
541dfae4
...
...
@@ -63,6 +63,8 @@ def lincoa(fun, x0, args=(), bounds=None, constraints=(), options=None):
flag does not interfere with the warning and error printing.
classical: bool, optional
Flag indicating whether to call the classical Powell code or not. By default, it is False.
eliminate_lin_eq: bool, optional
Flag indicating whether the linear equality constraints should be eliminated. By default, it is True.
debug: bool, optional
Debugging flag. By default, it is False.
chkfunval: bool, optional
...
...
python/interfaces/pdfo/_newuoa.py
View file @
541dfae4
...
...
@@ -49,6 +49,8 @@ def newuoa(fun, x0, args=(), options=None):
flag does not interfere with the warning and error printing.
classical: bool, optional
Flag indicating whether to call the classical Powell code or not. By default, it is False.
eliminate_lin_eq: bool, optional
Flag indicating whether the linear equality constraints should be eliminated. By default, it is True.
debug: bool, optional
Debugging flag. By default, it is False.
chkfunval: bool, optional
...
...
python/interfaces/pdfo/_pdfo.py
View file @
541dfae4
...
...
@@ -99,6 +99,8 @@ def pdfo(fun, x0, args=(), method=None, bounds=None, constraints=(), options=Non
flag does not interfere with the warning and error printing.
classical: bool, optional
Flag indicating whether to call the classical Powell code or not. By default, it is False.
eliminate_lin_eq: bool, optional
Flag indicating whether the linear equality constraints should be eliminated. By default, it is True.
debug: bool, optional
Debugging flag. By default, it is False.
chkfunval: bool, optional
...
...
python/interfaces/pdfo/_uobyqa.py
View file @
541dfae4
...
...
@@ -46,6 +46,8 @@ def uobyqa(fun, x0, args=(), options=None):
flag does not interfere with the warning and error printing.
classical: bool, optional
Flag indicating whether to call the classical Powell code or not. By default, it is False.
eliminate_lin_eq: bool, optional
Flag indicating whether the linear equality constraints should be eliminated. By default, it is True.
debug: bool, optional
Debugging flag. By default, it is False.
chkfunval: bool, optional
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment