Changes between Version 1 and Version 2 of ArchiTecture


Ignore:
Timestamp:
Sep 20, 2005, 5:42:51 PM (18 years ago)
Author:
ole
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ArchiTecture

    v1 v2  
    1 
    21== IDEAS ==
    32
     
    4544Look at matplotlib's verbosity object. It looks great.
    4645
     46Should we remove Python code superseded by C-extensions?
     47  Pros:   Leaner code and no risk
     48  Cons:  Less readable algorithms
     49
     50Move py code into files such as quantity_ext.py and have python wrappers with doc strings for all functions. Name the code in extensions _ext and conditional import as usual.
     51
     52Generally separate file_format stuff from functionality (and work with a small number of formats)
     53
     54
     55Have a .tms format for straight timeseries, use sww for f(t,x,y).
     56Modify Interpolation function and file_function accordingly. (Use lwru2.py as test bed) (Done by Ole)
     57
     58
     59