testing new version of coupling

This commit is contained in:
Steve Plimpton
2023-04-14 11:00:59 -06:00
parent 7f35ecffcc
commit 32f9800943
20 changed files with 2222 additions and 1945 deletions

View File

@ -2,7 +2,7 @@
#include <cstdlib>
#include <cstring>
#include "irregular.h"
#include "memory.h"
#include "memorylib.h"
#include "errorlib.h"
#define MAX(A,B) ((A) > (B)) ? (A) : (B)
@ -18,7 +18,7 @@ Irregular::Irregular(MPI_Comm caller)
MPI_Comm_rank(comm,&me);
MPI_Comm_size(comm,&nprocs);
memory = new Memory(comm);
memory = new MemoryLib(comm);
error = new ErrorLib(comm);
init();