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

code layout

parent da76333f
No related branches found
No related tags found
No related merge requests found
...@@ -99,8 +99,7 @@ double myeval( double x, void* data ) ...@@ -99,8 +99,7 @@ double myeval( double x, void* data )
//! Numeric integration of one curve. //! Numeric integration of one curve.
void cvin_integrate( double *r, double *dr, void cvin_integrate( double *r, double *dr, ROlc fc, int k, int j, const vector<double>& args )
ROlc fc, int k, int j, const vector<double>& args )
{ {
EvalDatTyp data; EvalDatTyp data;
data.fc = fc; data.fc = fc;
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
//! Function type: Evaluate curve functional //! Function type: Evaluate curve functional
typedef void (*cvin_eval) ( typedef void (*cvin_eval) (
double *r, double *dr, ROlc fc, int k, int j, const vector<double>& args ); double *r, double *dr, ROlc fc, int k, int j, const vector<double>& args );
//! A wrapper holding a functional. //! A wrapper holding a functional.
......
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