Hello
I encounter a problem when writing all the nodes belong to a condition
the code in bas file:
*set cond Surface_Group_Membership *nodes *canRepeat
*loop nodes *OnlyInCond
node_groups['*cond(Group_Name)'].append( *NodesNum )
*end nodes
Executing this gives an error: Error in basefile … at line number 154: Bad Integer format
However, if the bas file is modified a bit, this error goes away
*set cond Surface_Group_Membership *nodes *canRepeat
*loop nodes *OnlyInCond
*cond(Group_Name) is touched
node_groups['*cond(Group_Name)'].append( *NodesNum )
*end nodes
Of course, this is not what I want
Is it a bug, or something wrong anyway?