From dc955b56eefceccfb71625ab0bad566a06a9b06a Mon Sep 17 00:00:00 2001 From: Houtan Bastani <houtan@dynare.org> Date: Mon, 27 Jul 2015 17:32:59 +0200 Subject: [PATCH] fix writing for julia --- ExprNode.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ExprNode.cc b/ExprNode.cc index 1af22053..c40f2b6c 100644 --- a/ExprNode.cc +++ b/ExprNode.cc @@ -3057,7 +3057,7 @@ BinaryOpNode::writeOutput(ostream &output, ExprNodeOutputType output_type, output << "~="; else { - if (IS_C(output_type)) + if (IS_C(output_type) || IS_JULIA(output_type)) output << "!="; else output << "\\neq "; -- GitLab