Removed (now broken) database stuff.

This commit is contained in:
rowanc1
2014-02-12 09:56:20 -08:00
parent 38e1d5a1eb
commit 20cb359e82
11 changed files with 15 additions and 362 deletions
+6 -1
View File
@@ -4,7 +4,6 @@ from meshutils import exampleLomGird, meshTensors
from lomutils import volTetra, faceInfo, inv2X2BlockDiagonal, inv3X3BlockDiagonal, indexCube
from interputils import interpmat
from ipythonutils import easyAnimate as animate
import Save
import ModelBuilder
import types
@@ -12,6 +11,12 @@ import time
import numpy as np
from functools import wraps
class SimPEGMetaClass(type):
def __new__(cls, name, bases, attrs):
return super(SimPEGMetaClass, cls).__new__(cls, name, bases, attrs)
def hook(obj, method, name=None, overwrite=False, silent=False):
"""
This dynamically binds a method to the instance of the class.