summaryrefslogtreecommitdiffstats
path: root/eval/src/apps
diff options
context:
space:
mode:
authorHåvard Pettersen <havardpe@oath.com>2018-01-16 11:22:56 +0000
committerHåvard Pettersen <havardpe@oath.com>2018-01-16 11:22:56 +0000
commit8ec14870bc4460d131a28a9c199eb687c12ebd8e (patch)
tree5483b02e7c57aa6dde303fc057929280f4125fda /eval/src/apps
parent8852988ac1f0c391d9a3b603bd9f0e5af6c5e310 (diff)
move more param stuff to lazy_params.h
Diffstat (limited to 'eval/src/apps')
-rw-r--r--eval/src/apps/eval_expr/eval_expr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval/src/apps/eval_expr/eval_expr.cpp b/eval/src/apps/eval_expr/eval_expr.cpp
index 71c808174b8..91c669efe94 100644
--- a/eval/src/apps/eval_expr/eval_expr.cpp
+++ b/eval/src/apps/eval_expr/eval_expr.cpp
@@ -21,7 +21,7 @@ int main(int argc, char **argv) {
}
InterpretedFunction interpreted(SimpleTensorEngine::ref(), function, NodeTypes());
InterpretedFunction::Context ctx(interpreted);
- InterpretedFunction::SimpleParams params({});
+ SimpleParams params({});
const Value &result = interpreted.eval(ctx, params);
if (result.is_double()) {
fprintf(stdout, "%.32g\n", result.as_double());