|
6 | 6 | sum_of_squares, sum_of_squares_multiple |
7 | 7 | ) |
8 | 8 |
|
| 9 | +from .preprocess import ( |
| 10 | + ReformulateAlgebraic, CancelDenominator, SolveMul, SolvePolynomial |
| 11 | +) |
| 12 | + |
9 | 13 | from .linsos import ( |
10 | | - LinearSOS, |
| 14 | + LinearSOS, LinearSOSSolver |
11 | 15 | ) |
12 | 16 |
|
13 | 17 | from .structsos import ( |
14 | | - StructuralSOS, prove_univariate |
| 18 | + StructuralSOS, StructuralSOSSolver, prove_univariate |
15 | 19 | ) |
16 | 20 |
|
17 | 21 | from ..utils import pqr_sym, pqr_cyc, pqr_ker |
18 | 22 |
|
19 | 23 | from .symsos import ( |
20 | | - SymmetricSOS, sym_representation, sym_representation_inv, |
| 24 | + SymmetricSOS, SymmetricSubstitution, sym_representation, sym_representation_inv, |
| 25 | + |
21 | 26 | ) |
22 | 27 |
|
23 | 28 | from .sdpsos import ( |
24 | | - SDPSOS, SDPProblem, JointSOSElement, SOSPoly, SOHSPoly |
| 29 | + SDPSOS, SDPSOSSolver, SDPProblem, |
| 30 | + JointSOSElement, SOSPoly, SOHSPoly, SOSMomentPoly, |
25 | 31 | ) |
26 | 32 |
|
27 | 33 | __all__ = [ |
28 | 34 | 'ProofNode', 'ProofTree', |
29 | 35 | 'InequalityProblem', |
30 | 36 | 'Solution', |
31 | 37 | 'sum_of_squares', 'sum_of_squares_multiple', |
32 | | - 'LinearSOS', |
33 | | - 'StructuralSOS', |
34 | | - 'prove_univariate', |
| 38 | + 'ReformulateAlgebraic', 'CancelDenominator', 'SolveMul', 'SolvePolynomial', |
| 39 | + 'LinearSOS', 'LinearSOSSolver', |
| 40 | + 'StructuralSOS', 'StructuralSOSSolver', 'prove_univariate', |
35 | 41 | 'pqr_sym', 'pqr_cyc', 'pqr_ker', |
36 | | - 'SymmetricSOS', 'sym_representation', 'sym_representation_inv', |
37 | | - 'SDPSOS', 'SDPProblem', 'JointSOSElement', 'SOSPoly', 'SOHSPoly' |
38 | | - |
| 42 | + 'SymmetricSOS', 'SymmetricSubstitution', 'sym_representation', 'sym_representation_inv', |
| 43 | + 'SDPSOS', 'SDPSOSSolver', 'SDPProblem', |
| 44 | + 'JointSOSElement', 'SOSPoly', 'SOHSPoly', 'SOSMomentPoly', |
39 | 45 | ] |
0 commit comments