main
test-branch
|
Last change
on this file since 1aaefd4 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:
517 bytes
|
| Line | |
|---|
| 1 | //
|
|---|
| 2 | // steve_test.c
|
|---|
| 3 | //
|
|---|
| 4 | //
|
|---|
| 5 | // Created by siegel on 10/13/16.
|
|---|
| 6 | //
|
|---|
| 7 | //
|
|---|
| 8 |
|
|---|
| 9 | // #include "parcsr_ls.h"
|
|---|
| 10 | #include "parcsr_mv.h"
|
|---|
| 11 |
|
|---|
| 12 | int main() {
|
|---|
| 13 | // hypre_ParCSRMatrix A;
|
|---|
| 14 | // double scnorm;
|
|---|
| 15 | // int hypre_ParCSRMatrixScaledNorm ( hypre_ParCSRMatrix *A , double *scnorm );
|
|---|
| 16 | // int n = hypre_ParCSRMatrixScaledNorm(&A, &scnorm);
|
|---|
| 17 |
|
|---|
| 18 | //double hypre_ParVectorInnerProd( hypre_ParVector *x, hypre_ParVector *y )
|
|---|
| 19 | hypre_ParVector x, y;
|
|---|
| 20 | double result = hypre_ParVectorInnerProd(&x, &y);
|
|---|
| 21 | return result != 0;
|
|---|
| 22 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.