Skip to content

Commit

Permalink
Fix evaluation of external LAPACK functions
Browse files Browse the repository at this point in the history
  • Loading branch information
perost committed Feb 6, 2021
1 parent 01cc724 commit c69a0c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OMCompiler/Compiler/NFFrontEnd/NFEvalFunction.mo
Expand Up @@ -1155,7 +1155,7 @@ protected
ArgumentMap map;
list<Expression> ext_args;
algorithm
map := createArgumentMap(fn.inputs, fn.outputs, fn.locals, args, mutableParams = false);
map := createArgumentMap(fn.inputs, fn.outputs, fn.locals, args, mutableParams = true);
ext_args := list(Expression.map(e, function applyReplacements2(map = map)) for e in extArgs);
evaluateExternal3(name, ext_args);
result := createResult(map, fn.outputs);
Expand Down

0 comments on commit c69a0c7

Please sign in to comment.