Skip to content

Instantly share code, notes, and snippets.

@wence-
Created April 22, 2014 13:33
Show Gist options
  • Select an option

  • Save wence-/11179460 to your computer and use it in GitHub Desktop.

Select an option

Save wence-/11179460 to your computer and use it in GitHub Desktop.
diff --git a/src/PETSc/DM.pyx b/src/PETSc/DM.pyx
index b265921..3c25aa1 100644
--- a/src/PETSc/DM.pyx
+++ b/src/PETSc/DM.pyx
@@ -2,7 +2,6 @@
class DMType(object):
DA = S_(DMDA_type)
- ADDA = S_(DMADDA_type)
COMPOSITE = S_(DMCOMPOSITE)
SLICED = S_(DMSLICED)
SHELL = S_(DMSHELL)
diff --git a/src/PETSc/petscdm.pxi b/src/PETSc/petscdm.pxi
index 18521f2..2062bc7 100644
--- a/src/PETSc/petscdm.pxi
+++ b/src/PETSc/petscdm.pxi
@@ -4,7 +4,6 @@ cdef extern from * nogil:
ctypedef char* PetscDMType "const char*"
PetscDMType DMDA_type "DMDA"
- PetscDMType DMADDA_type "DMADDA"
PetscDMType DMCOMPOSITE
PetscDMType DMSLICED
PetscDMType DMSHELL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment