Skip to content

Commit 77dab53

Browse files
track number of Gomory cuts
1 parent 2d1f4d5 commit 77dab53

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/math/lp/lp_settings.h

+2
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ struct statistics {
115115
unsigned m_hnf_cutter_calls;
116116
unsigned m_hnf_cuts;
117117
unsigned m_nla_calls;
118+
unsigned m_gomory_cuts;
118119
unsigned m_nla_add_bounds;
119120
unsigned m_nla_propagate_bounds;
120121
unsigned m_nla_propagate_eq;
@@ -143,6 +144,7 @@ struct statistics {
143144
st.update("arith-patches-success", m_patches_success);
144145
st.update("arith-hnf-calls", m_hnf_cutter_calls);
145146
st.update("arith-hnf-cuts", m_hnf_cuts);
147+
st.update("arith-gomory-cuts", m_gomory_cuts);
146148
st.update("arith-horner-calls", m_horner_calls);
147149
st.update("arith-horner-conflicts", m_horner_conflicts);
148150
st.update("arith-horner-cross-nested-forms", m_cross_nested_forms);

0 commit comments

Comments
 (0)