-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix typo in readme * update docplex requirements, and add dependency to qiskit_optimization * add optimizers' wrappers * add simple test * documentation * flake8 * missing modification in requirements.txt * Update test_docplex.py add comments to `test_get_square_cont_var` * Update test_docplex.py * Update requirements.txt * Update setup.py * Update requirements.txt * Update test_docplex.py typo * Update docplex.py Add description of module docplex.ply Co-authored-by: toncho11 <toncho11@gmail.com> Co-authored-by: gcattan <gregoire.cattan@ibm.com> Co-authored-by: toncho11 <toncho11@gmail.com>
- Loading branch information
1 parent
e24bb6f
commit 84e4d5f
Showing
8 changed files
with
318 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
from . import hyper_params_factory, filtering | ||
from .docplex import (square_cont_mat_var, | ||
square_int_mat_var, | ||
square_bin_mat_var) | ||
square_bin_mat_var, | ||
ClassicalOptimizer, | ||
NaiveQAOAOptimizer) | ||
|
||
__all__ = [ | ||
'hyper_params_factory', | ||
'filtering', | ||
'square_cont_mat_var', | ||
'square_int_mat_var', | ||
'square_bin_mat_var' | ||
'square_bin_mat_var', | ||
'ClassicalOptimizer', | ||
'NaiveQAOAOptimizer' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.