-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
enhancementNew feature or requestNew feature or request
Description
from pyintervalxt import intervalxt
p = [1, 0]
lengths = [2, 1]
lengths = intervalxt.sample.Lengths[int](lengths)
iet = intervalxt.makeIET(lengths, p)
iet.periodicNonPeriodicDecomposition()
gives
IncrementalExecutor::executeFunction: symbol '_ZNK10intervalxt30IntervalExchangeTransformation32periodicNonPeriodicDecompositionEv' unresolved while linking symbol '__cf_11'!
You are probably missing the definition of intervalxt::IntervalExchangeTransformation::periodicNonPeriodicDecomposition() const
Maybe you need to load the corresponding shared library?
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-3-781d3521cceb> in <module>()
----> 1 iet.periodicNonPeriodicDecomposition()
ValueError: vector<intervalxt::IntervalExchangeTransformation> intervalxt::IntervalExchangeTransformation::periodicNonPeriodicDecomposition() =>
ValueError: nullptr result where temporary expected
Similarly
from pyintervalxt import intervalxt
p = [1, 0]
lengths = [1, 1]
lengths = intervalxt.sample.Lengths[int](lengths)
iet = intervalxt.makeIET(lengths, p)
iet.dropSaddleConnection()
gives
IncrementalExecutor::executeFunction: symbol '_ZN10intervalxt30IntervalExchangeTransformation20dropSaddleConnectionEv' unresolved while linking symbol '__cf_16'!
You are probably missing the definition of intervalxt::IntervalExchangeTransformation::dropSaddleConnection()
Maybe you need to load the corresponding shared library?
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request