Skip to content

Commit

Permalink
Removed debug prints from operators
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@4890 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Björn Zachrisson committed Feb 1, 2010
1 parent 9345201 commit c2ccd28
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions Compiler/Exp.mo
Expand Up @@ -6301,24 +6301,24 @@ algorithm
case (DAE.DIV(ty = _)) then " / ";
case (DAE.POW(ty = _)) then " ^ ";
case (DAE.EQUAL(ty = _)) then " = ";
case (DAE.ADD_ARR(ty = _)) then " +_arr ";
case (DAE.SUB_ARR(ty = _)) then " -_arr ";
case (DAE.MUL_ARR(ty = _)) then " *_arr ";
case (DAE.DIV_ARR(ty = _)) then " /_arr ";
case (DAE.POW_ARR(ty = _)) then " ^_arr ";
case (DAE.POW_ARR2(ty = _)) then " ^_arr ";
case (DAE.MUL_SCALAR_ARRAY(ty = _)) then " scal_*_arr ";
case (DAE.MUL_ARRAY_SCALAR(ty = _)) then " arr_*_scal ";
case (DAE.ADD_SCALAR_ARRAY(ty = _)) then " scal_+_arr ";
case (DAE.ADD_ARRAY_SCALAR(ty = _)) then " arr_+_scal ";
case (DAE.SUB_SCALAR_ARRAY(ty = _)) then " _scsl-_arr ";
case (DAE.SUB_ARRAY_SCALAR(ty = _)) then " _arr-_scal ";
case (DAE.POW_SCALAR_ARRAY(ty = _)) then " _scal^_arr ";
case (DAE.POW_ARRAY_SCALAR(ty = _)) then " _arr^_scal ";
case (DAE.MUL_SCALAR_PRODUCT(ty = _)) then " _scal*_pr ";
case (DAE.MUL_MATRIX_PRODUCT(ty = _)) then " _matr*_pr ";
case (DAE.DIV_SCALAR_ARRAY(ty = _)) then " _scal/_all ";
case (DAE.DIV_ARRAY_SCALAR(ty = _)) then " _arr/_scal ";
case (DAE.ADD_ARR(ty = _)) then " + ";
case (DAE.SUB_ARR(ty = _)) then " - ";
case (DAE.MUL_ARR(ty = _)) then " * ";
case (DAE.DIV_ARR(ty = _)) then " / ";
case (DAE.POW_ARR(ty = _)) then " ^ ";
case (DAE.POW_ARR2(ty = _)) then " ^ ";
case (DAE.MUL_SCALAR_ARRAY(ty = _)) then " * ";
case (DAE.MUL_ARRAY_SCALAR(ty = _)) then " * ";
case (DAE.ADD_SCALAR_ARRAY(ty = _)) then " + ";
case (DAE.ADD_ARRAY_SCALAR(ty = _)) then " + ";
case (DAE.SUB_SCALAR_ARRAY(ty = _)) then " - ";
case (DAE.SUB_ARRAY_SCALAR(ty = _)) then " - ";
case (DAE.POW_SCALAR_ARRAY(ty = _)) then " ^ ";
case (DAE.POW_ARRAY_SCALAR(ty = _)) then " ^ ";
case (DAE.MUL_SCALAR_PRODUCT(ty = _)) then " * ";
case (DAE.MUL_MATRIX_PRODUCT(ty = _)) then " * ";
case (DAE.DIV_SCALAR_ARRAY(ty = _)) then " / ";
case (DAE.DIV_ARRAY_SCALAR(ty = _)) then " / ";
end matchcontinue;
end binopSymbol1;

Expand Down

0 comments on commit c2ccd28

Please sign in to comment.