codac-team / codac

Codac is a library for constraint programming over reals, trajectories and sets.
http://www.codac.io
GNU Lesser General Public License v3.0
39 stars 18 forks source link

IntervalVector pretty-printting bug with Python #111

Open NuwanHerathM opened 6 months ago

NuwanHerathM commented 6 months ago

Trying to pretty-print the following interval vector with icecream raises a TypeError

from codac import *
from icecream import ic
b2_iv = IntervalVector([[-0.5418019655155, -0.4680189629224],[-0.4088904965983, -0.3177809931966]])
ic(b2_iv)