Hi all,
I'm seeing some undefined behavior with some structs I'm xdressing. My project is on github
here. The oddities I'm seeing is that after a purely clean build (removing install and build dirs), I'm getting segfaults from the command line on a
simple struct, correct construction with ipython on the same simply struct, and seg faults on both for a more
complicated struct.
Both my xdress and build commands work without error.
My ipython calls follow below:
In [1]: from cyclopts.execute import SupplyParams
In [2]: params = SupplyParams()
In [3]: from cyclopts.execute import RequestParams
In [4]: other = RequestParams()
Segmentation fault (core dumped)
And my command line calls are:
19:51 ~$ python -c "from cyclopts.execute import SupplyParams; params = SupplyParams();"
Segmentation fault (core dumped)
19:51 ~$ python -c "from cyclopts.execute import RequestParams; params = RequestParams();"
Segmentation fault (core dumped)
Any help would be appreciated.
--
Matthew Gidden
Ph.D. Candidate, Nuclear Engineering