Created
April 22, 2014 13:33
-
-
Save wence-/11179460 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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