git-svn-id: svn://db.shs.com.ru/pip@550 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2017-10-26 21:44:26 +00:00
parent 72ff847d4c
commit 8e3a3fc929

View File

@@ -1170,10 +1170,10 @@ inline void PIEvaluator::execFunction(const PIEvaluatorTypes::Instruction & ci)
break; break;
case PIEvaluatorTypes::bfRandomn: case PIEvaluatorTypes::bfRandomn:
tmpvars[oi].value = randomn(value(ci.operators[0]).real(), value(ci.operators[1]).real()); tmpvars[oi].value = randomn(value(ci.operators[0]).real(), value(ci.operators[1]).real());
break; break;
case PIEvaluatorTypes::bfRound: case PIEvaluatorTypes::bfRound:
tmpvars[oi].value = piRoundd(value(ci.operators[0]).real()); tmpvars[oi].value = piRoundd(value(ci.operators[0]).real());
break; break;
default: break; default: break;
} }
} }