source: CIVL/examples/omp/amg2013/par_multi_interp_main.c@ 1b509f2c

1.23 2.0 acw/focus-triggers main test-branch
Last change on this file since 1b509f2c was 431dec9, checked in by Matthew B. Dwyer <matthewbdwyer@…>, 10 years ago

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@3726 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 840 bytes
Line 
1#include <stdlib.h>
2#include <stdio.h>
3#include <math.h>
4
5#include "krylov.h"
6#include "sstruct_mv.h"
7
8int
9main( int argc,
10 char *argv[] )
11{
12 HYPRE_ParCSRMatrix par_A;
13 HYPRE_ParCSRMatrix par_S;
14
15int r = hypre_BoomerAMGBuildMultipass(hypre_ParCSRMatrix *A,
16 int *CF_marker,
17 hypre_ParCSRMatrix *S,
18 HYPRE_BigInt *num_cpts_global,
19 int num_functions,
20 int *dof_func,
21 int debug_flag,
22 double trunc_factor,
23 int P_max_elmts,
24 int weight_option,
25 int *col_offd_S_to_A,
26 hypre_ParCSRMatrix **P_ptr );
27
28}
Note: See TracBrowser for help on using the repository browser.