From 7a62a770eccca9cb7106c5c473162ef14cc1c7ca Mon Sep 17 00:00:00 2001
From: "Joachim Wuttke (o)" <j.wuttke@fz-juelich.de>
Date: Mon, 11 May 2015 11:25:27 +0200
Subject: [PATCH] curve integral now working in pocket calculator.

---
 pub/lib/node.hpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pub/lib/node.hpp b/pub/lib/node.hpp
index 23a8cc13..66e32e53 100644
--- a/pub/lib/node.hpp
+++ b/pub/lib/node.hpp
@@ -112,6 +112,7 @@ class CNodeGeni: public CNodeWithArgs {
     CNodeGeni( const class CGeni *_geni, RNode a0, RNode a1 );
     const RObj tree_val( const CContext& ctx ) const;
     void set_coord( CCoord& ret, int k ) const;
+    void kdep_exec( bool *kd ) const { *kd = true; }
     string tree_info() const;
 };
 
@@ -126,6 +127,7 @@ class CNodeCvin: public CNodeWithArgs {
     CNodeCvin( const class CCvin *_cvin, RRef _ref, RNode a0, RNode a1 );
     const RObj tree_val( const CContext& ctx ) const;
     void set_coord( CCoord& ret, int k ) const;
+    void kdep_exec( bool *kd ) const { *kd = true; }
     string tree_info() const;
 };
 
-- 
GitLab