| /petsc/src/snes/tutorials/ |
| H A D | ex99.c | 40 extern PetscErrorCode FormJacobian(SNES, Vec, Mat, Mat, void *); 82 PetscCall(SNESSetJacobian(snes, J, J, FormJacobian, NULL)); in main() 157 PetscErrorCode FormJacobian(SNES snes, Vec x, Mat jac, Mat B, void *dummy) in FormJacobian() function
|
| H A D | ex78.c | 23 PetscErrorCode FormJacobian(SNES, Vec, Mat, Mat, void *); 79 PetscCall(SNESSetJacobian(snes, J, J, FormJacobian, da)); in main() 174 PetscErrorCode FormJacobian(SNES snes, Vec x, Mat jac, Mat B, PetscCtx ctx) in FormJacobian() function
|
| H A D | ex59.c | 23 PetscErrorCode FormJacobian(SNES, Vec, Mat, Mat, void *); 76 PetscCall(SNESSetJacobian(snes, J, J, FormJacobian, 0)); in main() 153 PetscErrorCode FormJacobian(SNES snes, Vec x, Mat jac, Mat prejac, void *dummy) in FormJacobian() function
|
| H A D | ex2.c | 20 extern PetscErrorCode FormJacobian(SNES, Vec, Mat, Mat, void *); 94 PetscCall(SNESSetJacobian(snes, J, J, FormJacobian, NULL)); in main() 263 PetscErrorCode FormJacobian(SNES snes, Vec x, Mat jac, Mat B, void *dummy) in FormJacobian() function
|
| H A D | ex6.c | 9 PETSC_EXTERN PetscErrorCode FormJacobian(SNES, Vec, Mat, Mat, void *); 85 PetscCall(SNESSetJacobian(snes, J, J, FormJacobian, NULL)); in main() 236 PetscErrorCode FormJacobian(SNES snes, Vec x, Mat jac, Mat B, void *dummy) in FormJacobian() function
|
| H A D | ex1f.F90 | 68 subroutine FormJacobian(snes, X, jac, B, dummy, ierr) subroutine 222 PetscCallA(SNESSetJacobian(snes, J, J, FormJacobian, 0, ierr))
|
| H A D | ex14.c | 55 extern PetscErrorCode FormJacobian(SNES, Vec, Mat, Mat, void *); 145 PetscCall(SNESSetJacobian(snes, J, J, FormJacobian, &user)); in main() 383 PetscErrorCode FormJacobian(SNES snes, Vec X, Mat J, Mat jac, void *ptr) in FormJacobian() function
|
| H A D | ex3.c | 32 PetscErrorCode FormJacobian(SNES, Vec, Mat, Mat, void *); 155 PetscCall(SNESSetJacobian(snes, J, J, FormJacobian, &ctx)); in main() 429 PetscErrorCode FormJacobian(SNES snes, Vec x, Mat jac, Mat B, PetscCtx ctx) in FormJacobian() function
|
| /petsc/src/binding/petsc4py/demo/legacy/wrap-f2py/ |
| H A D | Bratu2D.pyf | 28 subroutine FormJacobian(dm, x, J, param, ierr) 35 end subroutine FormJacobian
|
| H A D | Bratu2Dmodule.h | 3 #define FormJacobian formjacobian macro
|
| H A D | run_demo.py | 34 ierr = Bratu2D.FormJacobian(da, vec_X, mat_P, self.lambda_)
|
| /petsc/src/mat/tests/ |
| H A D | ex24.c | 5 PetscErrorCode FormJacobian(Mat A) in FormJacobian() function 41 PetscCall(FormJacobian(J)); in main()
|
| /petsc/src/binding/petsc4py/demo/legacy/wrap-cython/ |
| H A D | Bratu3D.pyx | 13 int FormJacobian (PetscDM da, PetscVec x, PetscMat J, Params *p) 33 ierr = FormJacobian(da.dm, x.vec, P.mat, &p)
|
| H A D | Bratu3Dimpl.h | 12 PetscErrorCode FormJacobian(DM da, Vec x, Mat J, Params *p);
|
| /petsc/src/snes/tests/ |
| H A D | ex21f.F90 | 33 subroutine FormJacobian(snes, x, jac, jacb, user, ierr) subroutine 68 PetscCallA(SNESSetPicard(snes, res, FormFunction, user%A, user%A, FormJacobian, user, ierr))
|
| H A D | ex5.c | 19 extern PetscErrorCode FormJacobian(SNES, Vec, Mat, Mat, void *); 101 PetscCall(SNESSetJacobian(snes, J, J, FormJacobian, NULL)); in main() 265 PetscErrorCode FormJacobian(SNES snes, Vec x, Mat jac, Mat B, void *dummy) in FormJacobian() function
|
| H A D | ex7.c | 6 extern PetscErrorCode FormJacobian(SNES, Vec, Mat, Mat, void *); 82 …PetscCall(SNESSetJacobian(snes, J, puremf ? J : B, puremf ? FormJacobianNoMatrix : FormJacobian, &… in main() 180 PetscErrorCode FormJacobian(SNES snes, Vec x, Mat jac, Mat B, void *dummy) in FormJacobian() function
|
| H A D | ex1.c | 53 static PetscErrorCode FormJacobian(SNES, Vec, Mat, Mat, void *); 175 PetscCall(FormJacobian(snes, x, J, J, &user)); in main() 218 PetscCall(SNESSetJacobian(snes, J, J, FormJacobian, (void *)&user)); in main() 433 PetscErrorCode FormJacobian(SNES snes, Vec X, Mat J, Mat jac, void *ptr) in FormJacobian() function
|
| H A D | ex1f.F90 | 306 subroutine FormJacobian(snes, X, jac, jac_prec, dummy, ierr) subroutine 541 PetscCallA(FormJacobian(snes, x, J, J, 0, ierr)) 582 PetscCallA(SNESSetJacobian(snes, J, J, FormJacobian, 0, ierr))
|
| /petsc/src/binding/petsc4py/demo/legacy/wrap-swig/ |
| H A D | Bratu3D.h | 12 PetscErrorCode FormJacobian(DM da, Vec x, Mat J, Params *p);
|
| H A D | run_demo.py | 25 Bratu3D.FormJacobian(self.da, X, P, self.params)
|
| /petsc/src/ts/tutorials/ |
| H A D | ex1.c | 40 extern PetscErrorCode FormJacobian(TS, PetscReal, Vec, Mat, Mat, void *), FormFunction(TS, PetscRea… 109 PetscCall(TSSetRHSJacobian(ts, J, J, FormJacobian, &user)); in main() 265 PetscErrorCode FormJacobian(TS ts, PetscReal t, Vec X, Mat J, Mat B, void *ptr) in FormJacobian() function
|
| H A D | ex1f.F90 | 80 subroutine FormJacobian(ts, ctime, X, JJ, B, user, ierr) subroutine 277 PetscCallA(TSSetRHSJacobian(ts, J, J, FormJacobian, user, ierr))
|
| /petsc/src/snes/tutorials/ex10d/ |
| H A D | ex10.c | 67 PetscErrorCode FormJacobian(SNES, Vec, Mat, Mat, void *); 394 PetscCall(SNESSetJacobian(snes, Jac, Jac, FormJacobian, (void *)&user)); in main() 400 PetscCall(FormJacobian(snes, x, Jac, Jac, &user)); in main() 626 PetscErrorCode FormJacobian(SNES snes, Vec X, Mat J, Mat jac, void *ptr) in FormJacobian() function
|
| /petsc/src/tao/complementarity/tutorials/ |
| H A D | blackscholes.c | 114 PetscErrorCode FormJacobian(Tao, Vec, Mat, Mat, void *); 210 PetscCall(TaoSetJacobianRoutine(tao, J, J, FormJacobian, (void *)&user)); in main() 376 PetscErrorCode FormJacobian(Tao tao, Vec X, Mat J, Mat tJPre, void *ptr) in FormJacobian() function
|