summaryrefslogtreecommitdiff
path: root/src/Makefile.lsq_funcs
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-12-18 17:35:10 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-12-18 17:35:10 +0100
commit654ba2975793608dfa5588bddca775d24779f17c (patch)
tree40365569feb4acb00885313389fbda13b3cfa2fd /src/Makefile.lsq_funcs
parentc7286f257ec637f2d67e4b4a2bd1d70b4aff0116 (diff)
400% speedup by using maxima's optimize()
Diffstat (limited to 'src/Makefile.lsq_funcs')
-rw-r--r--src/Makefile.lsq_funcs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.lsq_funcs b/src/Makefile.lsq_funcs
index 8f92113..c33fe5f 100644
--- a/src/Makefile.lsq_funcs
+++ b/src/Makefile.lsq_funcs
@@ -1,7 +1,7 @@
all: ProjectionRectilinear_funcs.cxx ProjectionCylindrical_funcs.cxx
-ProjectionRectilinear_funcs.cxx: lsq_rectilinear.mac
- maxima -b lsq_rectilinear.mac | grep "^double" > ProjectionRectilinear_funcs.cxx
+ProjectionRectilinear_funcs.cxx: lsq_rectilinear.mac expr2c.mac
+ maxima -b lsq_rectilinear.mac | grep "^double" | sed s/%/_/g > ProjectionRectilinear_funcs.cxx
-ProjectionCylindrical_funcs.cxx: lsq_cylindrical.mac
- maxima -b lsq_cylindrical.mac | grep "^double" > ProjectionCylindrical_funcs.cxx
+ProjectionCylindrical_funcs.cxx: lsq_cylindrical.mac expr2c.mac
+ maxima -b lsq_cylindrical.mac | grep "^double" | sed s/%/_/g > ProjectionCylindrical_funcs.cxx