fumitoh / modelx

Use Python like a spreadsheet!
https://modelx.io
GNU Lesser General Public License v3.0
89 stars 20 forks source link

Bool ref serialization issue #39

Closed alexeybaran closed 3 years ago

alexeybaran commented 3 years ago
import modelx as mx
m = mx.new_model(); s = mx.new_space()
s.a = False
mx.write_model(m, 'm')
m2 = mx.read_model('m')