Files
simpeg/SimPEG/__init__.py
T
Brendan Smithyman 29195e6608 Incorporating the first parts of my parallel distributed tools.
DataWrappers.py contains the CommonReducer class, which enables pass-through math operations and function calls on dictionaries.
Parallel.py contains the job scheduler, remote interface (w/ MPI support) and several helper functions.
2015-05-01 17:04:59 -04:00

23 lines
425 B
Python

import numpy as np
import scipy.sparse as sp
import Utils
from Utils.SolverUtils import *
import Mesh
import Maps
import Models
import Problem
import Survey
import Regularization
import DataMisfit
import InvProblem
import Optimization
import Directives
import Inversion
import Parallel
import Tests
__version__ = '0.1.1'
__author__ = 'Rowan Cockett'
__license__ = 'MIT'
__copyright__ = 'Copyright 2014 Rowan Cockett'