Changeset 12239 in project
- Timestamp:
- 10/22/08 07:23:34 (12 years ago)
- Location:
- release/3/nemo/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
release/3/nemo/trunk/nemo-eggdoc.scm
r12237 r12239 73 73 (describe "--nmodl[=FILE]" "write NMODL output to file (default: <model-name>.mod") 74 74 (describe "--nmodl-method=METHOD" "specify NMODL integration method (cnexp, derivimplicit)") 75 (describe "--nmodl-kinetic=STATES" "use NMODL kinetic equations for the given states") 75 (describe "--nmodl-kinetic=[STATES]" ("use NMODL kinetic equations for the given state complexes " 76 "(or for all state complexes)")) 76 77 (describe "-t" "use interpolation tables in generated code") 77 78 (describe "-h, --help" "print help")))) -
release/3/nemo/trunk/nemo-nmodl.scm
r12238 r12239 718 718 (define (cid x) (second x)) 719 719 (define (cn x) (first x)) 720 (let-optionals rest ((method 'cnexp) (table? #f) (min-v -100) (max-v 100) (step 0.5) (depend #f)721 ( kinetic (list)) )720 (let-optionals rest ((method 'cnexp) (table? #f) (min-v -100) (max-v 100) (step 0.5) 721 (depend #f) (kinetic (list)) ) 722 722 (match-let ((($ nemo:quantity 'DISPATCH dis) (environment-ref sys (nemo-intern 'dispatch)))) 723 723 (let ((imports ((dis 'imports) sys)) … … 731 731 (asgns ((dis 'asgns) sys)) 732 732 (states ((dis 'states) sys)) 733 (kinetic (if (eq? kinetic 'all) stateskinetic))733 (kinetic (if (eq? kinetic 'all) (delete-duplicates (map first states)) kinetic)) 734 734 (stcomps ((dis 'stcomps) sys)) 735 735 (defuns ((dis 'defuns) sys)) … … 737 737 (ionchs (filter-map (match-lambda ((name 'ion-channel id) (list name id)) (else #f)) components)) 738 738 (epools (collect-epools sys))) 739 739 740 740 741 (match-let (((state-list asgn-list g) deps*)) -
release/3/nemo/trunk/nemo.scm
r12238 r12239 69 69 (s+ "write NMODL output to file (default: <model-name>.mod)")) 70 70 ,(args:make-option (nmodl-kinetic) (optional: "STATES") 71 (s+ "use NMODL kinetic equations for the given state s (or for all states)"))71 (s+ "use NMODL kinetic equations for the given state complexes (or for all state complexes)")) 72 72 ,(args:make-option (nmodl-method) (required: "METHOD") 73 73 (s+ "specify NMODL integration method (cnexp, derivimplicit)")
Note: See TracChangeset
for help on using the changeset viewer.