NMD
u1.c
Go to the documentation of this file.
00001 #include <stdlib.h>
00002 #include "nmd.h"
00003 
00004 /*! Test setting and getting values */
00005 int main(int argc,char **argv) {
00006   NMD_metadata nmd; NMDErrorCode ierr;
00007   PetscFunctionBegin;
00008   PetscInitialize(&argc,&argv,0,0);
00009 
00010   ierr = NMDCreateObject(&nmd); NMD_ERR_RETURN(ierr);
00011   ierr = NMDDestroyObject(nmd); NMD_ERR_RETURN(ierr);
00012 
00013   PetscFinalize();
00014   PetscFunctionReturn(0);
00015 }