Changeset 126


Ignore:
Timestamp:
03/26/09 11:10:43 (7 years ago)
Author:
mmckerns
Message:

added tutorial examples (see ticket #24);
commented out addModelNew (see ticket #30);
fixed formatting for printing 'x' in VerboseSow?

Location:
mystic
Files:
12 added
4 edited

Legend:

Unmodified
Added
Removed
  • mystic/README

    r113 r126  
    22 
    33Dependencies: 
     4 - All examples with prefix "example" should run without new dependencies, and are intended as a tutorial. (i.e. TRY THESE FIRST) 
    45 - All examples with prefix "test_" should run without new dependencies. 
    56 - All examples with prefix "scipy_" requires scipy to be installed. (tested on version 0.4.8). 
  • mystic/examples/Make.mm

    r113 r126  
    7474    rosetta_parabola_example.py \ 
    7575    rosetta_mogi_example.py \ 
     76    example01.py \ 
     77    example02.py \ 
     78    example03.py \ 
     79    example04.py \ 
     80    example05.py \ 
     81    example06.py \ 
     82    example07.py \ 
     83    example08.py \ 
     84    example09.py \ 
     85    example10.py \ 
     86    example11.py \ 
     87    example12.py \ 
    7688 
    7789 
  • mystic/mystic/forward_model.py

    r124 r126  
    6868        self._inputCheckers.append(inputChecker) 
    6969 
     70    #XXX: addModelNew is a work in progress... 
     71    ''' 
    7072    def addModelNew(self, model, name, outputFilter = Identity, inputChecker = NullChecker): 
    7173        """ 
     
    8789        self._outputFilters.append(outputFilter) 
    8890        self._inputCheckers.append(inputChecker) 
     91    ''' 
    8992 
    9093    def getForwardEvaluator(self, evalpts): 
  • mystic/mystic/tools.py

    r124 r126  
    170170            print "Generation %d has best Chi-Squared: %f" % (self._step, y) 
    171171        if int(self._step % self._xinterval) == 0: 
    172             print "Generation %d has bet fit parameters: %s" % (self._step, x) 
     172            print "Generation %d has best fit parameters:\n %s" % (self._step, x) 
    173173        return 
    174174    pass 
Note: See TracChangeset for help on using the changeset viewer.