mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-20 22:30:30 +01:00
[poincare/normcdf2] Fix shallowReduce (mu and var indexes were wrong)
This commit is contained in:
committed by
EmilieNumworks
parent
39093b0aa9
commit
3911dc89b7
@@ -19,8 +19,8 @@ Expression NormalDistributionFunction::shallowReduce(Context * context, bool * s
|
||||
}
|
||||
}
|
||||
|
||||
Expression mu = childAtIndex(1);
|
||||
Expression var = childAtIndex(2);
|
||||
Expression mu = childAtIndex(muIndex());
|
||||
Expression var = childAtIndex(varIndex());
|
||||
|
||||
// Check mu and var
|
||||
bool muAndVarOK = false;
|
||||
|
||||
Reference in New Issue
Block a user