From: Matthew Fernandez Date: Sat, 26 Jun 2021 18:23:45 +0000 (-0700) Subject: remove unused getSplitCnt X-Git-Tag: 2.48.0~23^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ddc953156490a9393f53892bb53fc170516eecc;p=graphviz remove unused getSplitCnt --- diff --git a/lib/vpsc/csolve_VPSC.cpp b/lib/vpsc/csolve_VPSC.cpp index 9c38c0741..f1305bad2 100644 --- a/lib/vpsc/csolve_VPSC.cpp +++ b/lib/vpsc/csolve_VPSC.cpp @@ -75,9 +75,6 @@ void satisfyVPSC(VPSC* vpsc) { std::exit(1); } } -int getSplitCnt(IncVPSC *vpsc) { - return vpsc->splitCnt; -} void deleteVPSC(VPSC *vpsc) { assert(vpsc!=nullptr); delete vpsc; diff --git a/lib/vpsc/csolve_VPSC.h b/lib/vpsc/csolve_VPSC.h index 3b5abcd51..a5deac895 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[]); -int getSplitCnt(IncVPSC *vpsc); #ifdef __cplusplus } #endif