Open Babalion opened 2 years ago
There is only a single overload of getC3
for std::vector<StateTwo>
, whereas getC6
has overloads for both StateTwo
and std::vector< StateTwo>
. That's why it works with getC6
. As a workaround you can use for now
-C_3 = calculator.getC3(stateDD)
+C_3 = calculator.getC3([stateDD])
I try to calculate the C3 coefficient between two states in a python-script. Here is a minimal working example:
The error is:
It seems to be a type error, but when calculating the C6 coefficient, the type matches. Is this an error or am I not using this function correctly? Thanks in advance!