Skip to content
Snippets Groups Projects
Commit 091643ea authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

'dirac' -> 'resol'

parent ad0ee7df
No related branches found
No related tags found
No related merge requests found
Release 2.1.4c of
- user interface changes:
- 'resol' instead of 'dirac'
- improved behavior:
- improve curve refinement, especially for log axes (close_enough)
- bugfixes:
......
......@@ -574,7 +574,7 @@ void CTree::set_coord( CCoord& ret, uint k ) const
arg[0]->set_coord( ret, k );
break;
case _DIRAC:
ret = CCoord("dirac", "");
ret = CCoord("resol", "");
break;
case _VAL:
ret = CCoord(strg(val), "");
......@@ -608,7 +608,7 @@ string CTree::tree_info() const
case _CONV:
return "conv(" + arg[0]->tree_info() + ")";
case _DIRAC:
return "dirac(" + arg[0]->tree_info() + ")";
return "resol(" + arg[0]->tree_info() + ")";
case _VAL:
return "val[" + strg(val) + "]";
case _REF:
......
......@@ -96,7 +96,7 @@ e {
"over" { return BOP_OVER; } /* binomial coefficient: n over k */
"conv" { return CONV; }
"dirac" { return DIRAC; }
"resol" { return DIRAC; }
{ID} {
// printf( "lex: An identifier: %s\n", xaxtext );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment