source: CIVL/examples/mpi-omp/AMG2013/parcsr_mv/par_csr_assumed_part.h

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

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

  • Property mode set to 100644
File size: 458 bytes
Line 
1
2#ifndef hypre_PARCSR_ASSUMED_PART
3#define hypre_PARCSR_ASSUMED_PART
4
5typedef struct
6{
7 int length;
8 HYPRE_BigInt row_start;
9 HYPRE_BigInt row_end;
10 int storage_length;
11 int *proc_list;
12 HYPRE_BigInt *row_start_list;
13 HYPRE_BigInt *row_end_list;
14 int *sort_index;
15} hypre_IJAssumedPart;
16
17
18
19
20#endif /* hypre_PARCSR_ASSUMED_PART */
21
Note: See TracBrowser for help on using the repository browser.