-
Notifications
You must be signed in to change notification settings - Fork 0
/
main-test2.cpp
57 lines (48 loc) · 1.59 KB
/
main-test2.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// #include "multi_filament_header.hpp"
// #include "FilamentJacobianSolver.hpp"
// #include "c_array_functions.hpp"
// #include "FCMfunctions.hpp"
// #include "print_functions.hpp"
// #include "file_functions.hpp"
// #include "filament_initialisation_functions.hpp"
// #include "profilers.hpp"
// #include "CollisionBarrierFilament.hpp"
// #include "spring_link_functions.hpp"
// #include <limits>
// #include <cstddef>
// #include <mpi.h>
// #include <omp.h>
#include <iostream>
// #include <cmath>
// #include <vector>
// #include <fstream>
// #include <stdlib.h>
// #include <stdio.h>
// int Np = 30;// Overwritten later
// #if verbose
// #include <cassert> // for DEBUGGING
// #endif
// Simulation parameters are set in "config.hpp"
int main(int argc, char **argv){
using namespace std;
cout << "hello" << endl;
// cout << "A" << endl;
// int totalnodes, myrank;
// MPI_Init(&argc, &argv);
// MPI_Comm_size(MPI_COMM_WORLD, &totalnodes);
// MPI_Comm_rank(MPI_COMM_WORLD, &myrank);
//
// // Filament setup ==========================================================
// // Declare array of Nsw filaments formed of Nworm beads.
// // Positions will be kept track of only by rank 0.
// vector<Filament> filaments;
//
// // Declare linked list struct with all variables needed for collision
// // barrier linked list. Then initialise.
// cout << Nsw << " " << max_Nworm << " "<<Nsw*max_Nworm << endl;
// linked_list linked_list;
// cout << myrank << " " << totalnodes << endl;
// linked_list.initialise(myrank, totalnodes, filaments);
// cout << "X";
return 0;
}