1.23
2.0
main
test-branch
| 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.