Update stubs.

pull/493/head
KmolYuan 2021-12-11 19:51:55 +08:00
parent 64fb127195
commit b7d192129d
1 changed files with 8 additions and 2 deletions

View File

@ -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: