Model.settrimcuttingplanes#

Model.settrimcuttingplanes(state)#

Turns the cutting plane trim option on/off.

Parameters:

state (int) –

Specifies the trim plane option for all cutting planes. Valid values are:

0 - off

1 - on

Example#

Turn off the trim cut plane option#
import hm
import hm.entities as ent

model = hm.Model()

model.settrimcuttingplanes(state=0)