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

curve integral now working in pocket calculator.

parent 450915d3
No related branches found
No related tags found
No related merge requests found
...@@ -112,6 +112,7 @@ class CNodeGeni: public CNodeWithArgs { ...@@ -112,6 +112,7 @@ class CNodeGeni: public CNodeWithArgs {
CNodeGeni( const class CGeni *_geni, RNode a0, RNode a1 ); CNodeGeni( const class CGeni *_geni, RNode a0, RNode a1 );
const RObj tree_val( const CContext& ctx ) const; const RObj tree_val( const CContext& ctx ) const;
void set_coord( CCoord& ret, int k ) const; void set_coord( CCoord& ret, int k ) const;
void kdep_exec( bool *kd ) const { *kd = true; }
string tree_info() const; string tree_info() const;
}; };
...@@ -126,6 +127,7 @@ class CNodeCvin: public CNodeWithArgs { ...@@ -126,6 +127,7 @@ class CNodeCvin: public CNodeWithArgs {
CNodeCvin( const class CCvin *_cvin, RRef _ref, RNode a0, RNode a1 ); CNodeCvin( const class CCvin *_cvin, RRef _ref, RNode a0, RNode a1 );
const RObj tree_val( const CContext& ctx ) const; const RObj tree_val( const CContext& ctx ) const;
void set_coord( CCoord& ret, int k ) const; void set_coord( CCoord& ret, int k ) const;
void kdep_exec( bool *kd ) const { *kd = true; }
string tree_info() const; string tree_info() const;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment