Skip to content

Commit

Permalink
fix test_link
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaslg committed Jan 9, 2024
1 parent 3ea31de commit 0c785c8
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions test_link/main.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,25 @@
#include <iostream>
#include <string>
#include <smooth3D/smooth3D.h>

#include <smooth3D/smooth3d.h>
// what to do with machine_types ?
//#include <machine_types.h>

int main() {

S3_CELL_3D cell;
cell.nb_nodes = 8;
cell.vtx[0];
/*
int_type nb_cells = 1;
int_type nb_nodes = 4;
int_type nb_nodes_per_cell[1] = {4};
int_type nodes_number[4] = {0,1,2,3}
double x[4] = {0., 1., 1., 0.};
double y[4] = {0., 0., 1., 1.};
double z[4] = {0., 0., 0., 0.};
double weights[4] = {1., 1., 1., 1.};
double relax[4] = {1., 1., 1., 1.};
int_type n_iter = 2;
int ret = S3_laplace(nb_cells, nb_nodes, nb_nodes_per_cell, nodes_number, x, y, z, weights, relax, n_iter);
*/
return 0;
}

0 comments on commit 0c785c8

Please sign in to comment.