Update stubs.
parent
64fb127195
commit
b7d192129d
|
@ -95,8 +95,14 @@ class Entity:
|
||||||
|
|
||||||
class SolverSystem:
|
class SolverSystem:
|
||||||
|
|
||||||
def __init__(self) -> None:
|
def __init__(self, g: int = 0, param_list=None, entity_list=None, cons_list=None) -> None:
|
||||||
"""Initialization method. Create a solver system."""
|
"""Create a solver system.
|
||||||
|
|
||||||
|
The current group, parameters, entities, constraints can be set from an existing solver.
|
||||||
|
"""
|
||||||
|
...
|
||||||
|
|
||||||
|
def __reduce__(self):
|
||||||
...
|
...
|
||||||
|
|
||||||
def copy(self) -> SolverSystem:
|
def copy(self) -> SolverSystem:
|
||||||
|
|
Loading…
Reference in New Issue