From: Matthew Fernandez Date: Sat, 26 Jun 2021 18:23:08 +0000 (-0700) Subject: remove unused splitIncVPSC X-Git-Tag: 2.48.0~23^2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=96d944c2629403743ce0262fd8534f7eaa28e920;p=graphviz remove unused splitIncVPSC --- diff --git a/lib/vpsc/csolve_VPSC.cpp b/lib/vpsc/csolve_VPSC.cpp index 19d1c19f5..9c38c0741 100644 --- a/lib/vpsc/csolve_VPSC.cpp +++ b/lib/vpsc/csolve_VPSC.cpp @@ -85,9 +85,6 @@ void deleteVPSC(VPSC *vpsc) { void solveVPSC(VPSC* vpsc) { vpsc->solve(); } -void splitIncVPSC(IncVPSC* vpsc) { - vpsc->splitBlocks(); -} void setVariableDesiredPos(Variable *v, double desiredPos) { v->desiredPosition = desiredPos; } diff --git a/lib/vpsc/csolve_VPSC.h b/lib/vpsc/csolve_VPSC.h index b8aabcc22..3b5abcd51 100644 --- a/lib/vpsc/csolve_VPSC.h +++ b/lib/vpsc/csolve_VPSC.h @@ -50,7 +50,6 @@ void satisfyVPSC(VPSC*); void solveVPSC(VPSC*); typedef struct IncVPSC IncVPSC; VPSC* newIncVPSC(int n, Variable* vs[], int m, Constraint* cs[]); -void splitIncVPSC(IncVPSC*); int getSplitCnt(IncVPSC *vpsc); #ifdef __cplusplus }