File: __init__.py

package info (click to toggle)
python-bumps 0.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 10,688 kB
  • sloc: python: 24,446; ansic: 4,973; cpp: 4,849; javascript: 639; xml: 493; makefile: 147; perl: 108; sh: 94
file content (31 lines) | stat: -rw-r--r-- 571 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""
Sample models and functions prepared for use in mystic


Functions
=========

    corana 1d,2d,3d,4d     -- Corana's function


Models
======

    dense_circle     -- 2d array representation of a circle
    sparse_circle
    minimal_circle
    decay            -- Bevington & Robinson's model of dual exponential decay

"""

# base classes
#from .model import Fitness, Function

# models
#from .decay import decay
#from .circle import dense_circle, sparse_circle, minimal_circle

# functions
#from .corana import corana1d, corana2d, corana3d, corana4d

# end of file