Changeset 230 for branches/pp
- Timestamp:
- 05/15/10 00:24:03 (6 years ago)
- Location:
- branches/pp
- Files:
-
- 4 added
- 74 deleted
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/pp/Make.mm
r157 r230 1 1 # -*- Makefile -*- 2 2 3 PROJECT = mystic3 PROJECT = ppmystic 4 4 5 5 BUILD_DIRS = \ 6 mystic \ 7 models \ 6 ppmystic \ 8 7 9 8 OTHER_DIRS = \ 10 9 examples \ 11 examples_other \12 tests \13 10 14 11 RECURSE_DIRS = $(BUILD_DIRS) $(OTHER_DIRS) -
branches/pp/examples/Make.mm
r157 r230 2 2 # 3 3 4 PROJECT = mystic4 PROJECT = ppmystic 5 5 PACKAGE = examples 6 6 … … 25 25 #EXPORT_PYTHON_MODULES = \ 26 26 EXPORT_BINS = \ 27 cg_rosenbrock.py \28 ## derun.py \29 ## dummy.py \30 example01.py \31 example02.py \32 example03.py \33 example04.py \34 example05.py \35 example06.py \36 example07.py \37 example08.py \38 example09.py \39 example10.py \40 example11.py \41 example12.py \42 forward_model.py \43 # gplot_test_ffit.py \44 ## metropolis.py \45 mpl_corana.py \46 rosetta_parabola.py \47 rosetta_mogi.py \48 test_br8.py \49 test_circle.py \50 test_corana.py \51 test_dejong3.py \52 test_dejong4.py \53 test_dejong5.py \54 27 test_ffit.py \ 55 test_ffit2.py \ 56 test_ffitB.py \ 57 test_ffitC.py \ 58 test_ffitD.py \ 59 test_fosc3d.py \ 60 test_getCost.py \ 61 test_griewangk.py \ 62 test_lorentzian.py \ 63 test_lorentzian2.py \ 64 test_mogi.py \ 65 test_mogi2.py \ 66 ## test_mogi3.py \ 67 ## test_mogi4.py \ 68 test_mogi_anneal.py \ 69 test_mogi_leastsq.py \ 70 test_rosenbrock.py \ 71 test_rosenbrock2.py \ 72 test_rosenbrock3.py \ 73 ## test_twistedgaussian.py \ 74 ## test_twistedgaussian2.py \ 75 ## test_twistedgaussian3.py \ 76 test_wavy.py \ 77 test_zimmermann.py \ 28 TEST_ffitPP.py \ 29 TEST_ffitPP2.py \ 30 TEST_ffitPP2_b.py \ 31 TEST_ffitPP_b.py \ 78 32 79 33 -
branches/pp/ppmystic/Make.mm
r157 r230 1 1 # -*- Makefile -*- 2 2 3 PROJECT = mystic4 PACKAGE = mystic3 PROJECT = ppmystic 4 PACKAGE = ppmystic 5 5 6 6 BUILD_DIRS = \ -
branches/pp/ppmystic/__init__.py
r157 r230 196 196 197 197 # solvers 198 import differential_evolution , scipy_optimize198 import differential_evolution 199 199 200 200 # strategies, termination conditions 201 import termination202 import strategy203 201 204 202 # monitors, function wrappers, and other tools 205 from tools import *206 207 def copyright():208 """print copyright and reference"""209 print __license__[-439:]210 return211 203 212 204 # end of file
Note: See TracChangeset
for help on using the changeset viewer.