]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/SketchSolver/SketchSolver_ISolver.h
Salome HOME
SketchSolver Refactoring: Eliminate SolveSpace as a sketch solver.
[modules/shaper.git] / src / SketchSolver / SketchSolver_ISolver.h
index cd525405737336e56b39985edd012189e9797934..c1c21bffa8f7974f7332583e20676d4bba10d528 100644 (file)
@@ -29,10 +29,6 @@ class SketchSolver_ISolver
 public:
   virtual ~SketchSolver_ISolver() {}
 
-  /// \brief Changes the ID of the group to solve
-  void setGroup(const GroupID& theGroupID)
-  { myGroup = theGroupID; }
-
   /// \brief Set or unset the flag which allows to find all failed constraints
   void calculateFailedConstraints(bool theSic)
   { myFindFaileds = theSic; }
@@ -54,7 +50,6 @@ public:
   virtual int dof() const = 0;
 
 protected:
-  GroupID myGroup;       ///< ID of the group to be solved
   bool    myFindFaileds; ///< flag to find conflicting or inappropriate constraints
 };