issue260.py 245 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
#from ortools.constraint_solver import pywrapcp
from ortools.sat.python import cp_model

model = cp_model.CpModel()
y = model.NewIntVar(0, 3, 'y')
y == None

#solver = pywrapcp.Solver('my solver')
#x = solver.IntVar(0, 3, 'var_name')
#x == None