Open pdamme opened 8 months ago
DaphneDSL does not support the typical unary not operator yet; one cannot say, e.g., if(!found) ... or while(!(converged || aborted)) .... There is a workaround: if(found == false), but we should not require that, since it's quite inconvenient.
if(!found) ...
while(!(converged || aborted)) ...
if(found == false)
Solving this issue requires:
DaphneDSL does not support the typical unary not operator yet; one cannot say, e.g.,
if(!found) ...
orwhile(!(converged || aborted)) ...
. There is a workaround:if(found == false)
, but we should not require that, since it's quite inconvenient.Solving this issue requires: