From b7d192129dd920de9a2c06471d2b9bec52636f61 Mon Sep 17 00:00:00 2001 From: KmolYuan Date: Sat, 11 Dec 2021 19:51:55 +0800 Subject: [PATCH] Update stubs. --- cython/python_solvespace/slvs.pyi | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/cython/python_solvespace/slvs.pyi b/cython/python_solvespace/slvs.pyi index 47f40c2b..5236f815 100644 --- a/cython/python_solvespace/slvs.pyi +++ b/cython/python_solvespace/slvs.pyi @@ -95,8 +95,14 @@ class Entity: class SolverSystem: - def __init__(self) -> None: - """Initialization method. Create a solver system.""" + def __init__(self, g: int = 0, param_list=None, entity_list=None, cons_list=None) -> None: + """Create a solver system. + + The current group, parameters, entities, constraints can be set from an existing solver. + """ + ... + + def __reduce__(self): ... def copy(self) -> SolverSystem: