| /petsc/src/snes/tutorials/ |
| H A D | ex99.c | 41 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *); 81 PetscCall(SNESSetFunction(snes, r, FormFunction, NULL)); in main() 132 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, PetscCtx ctx) in FormFunction() function
|
| H A D | ex78.c | 24 PetscErrorCode FormFunction(SNES, Vec, Vec, void *); 71 PetscCall(SNESSetFunction(snes, r, FormFunction, da)); in main() 109 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, PetscCtx ctx) in FormFunction() function
|
| H A D | ex31.c | 28 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *); 90 PetscCall(SNESSetFunction(snes, r, FormFunction, blasius)); in main() 160 PetscErrorCode FormFunction(SNES snes, Vec X, Vec R, PetscCtx ctx) in FormFunction() function
|
| H A D | ex59.c | 24 PetscErrorCode FormFunction(SNES, Vec, Vec, void *); 62 PetscCall(SNESSetFunction(snes, r, FormFunction, (void *)F)); in main() 127 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, void *dummy) in FormFunction() function
|
| H A D | ex2.c | 21 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *); 72 PetscCall(SNESSetFunction(snes, r, FormFunction, (void *)F)); in main() 211 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, PetscCtx ctx) in FormFunction() function
|
| H A D | ex6.c | 10 PETSC_EXTERN PetscErrorCode FormFunction(SNES, Vec, Vec, void *); 63 PetscCall(SNESSetFunction(snes, r, FormFunction, (void *)F)); in main() 184 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, PetscCtx ctx) in FormFunction() function
|
| H A D | ex14.c | 53 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *); 103 PetscCall(SNESSetFunction(snes, r, FormFunction, (void *)&user)); in main() 132 PetscCall(MatFDColoringSetFunction(matfdcoloring, (MatFDColoringFn *)FormFunction, &user)); in main() 173 PetscCall(FormFunction(snes, x, r, (void *)&user)); in main() 347 PetscErrorCode FormFunction(SNES snes, Vec X, Vec F, void *ptr) in FormFunction() function
|
| H A D | ex21.c | 46 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *); 84 PetscCall(SNESSetFunction(snes, FU, FormFunction, &user)); in main() 109 PetscErrorCode FormFunction(SNES snes, Vec U, Vec FU, void *dummy) in FormFunction() function
|
| H A D | ex5m.m | 3 % MATLAB routine that does the FormFunction() for ex5.c
|
| /petsc/src/binding/petsc4py/demo/legacy/wrap-f2py/ |
| H A D | Bratu2D.pyf | 19 subroutine FormFunction(dm, x, f, param, ierr) 26 end subroutine FormFunction
|
| H A D | Bratu2Dmodule.h | 2 #define FormFunction formfunction macro
|
| /petsc/src/binding/petsc4py/demo/legacy/wrap-cython/ |
| H A D | Bratu3D.pyx | 12 int FormFunction (PetscDM da, PetscVec x, PetscVec F, Params *p) 26 ierr = FormFunction(da.dm, x.vec, f.vec, &p)
|
| H A D | Bratu3Dimpl.h | 11 PetscErrorCode FormFunction(DM da, Vec x, Vec F, Params *p);
|
| /petsc/src/snes/tests/ |
| H A D | ex7.c | 8 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *); 64 PetscCall(SNESSetFunction(snes, r, FormFunction, F)); in main() 104 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, void *dummy) in FormFunction() function 161 PetscCall(FormFunction(NULL, x, f, dummy)); in OtherFunctionForDifferencing()
|
| H A D | ex21f.F90 | 13 subroutine FormFunction(snes, x, f, user, ierr) subroutine 68 PetscCallA(SNESSetPicard(snes, res, FormFunction, user%A, user%A, FormJacobian, user, ierr))
|
| H A D | ex5.c | 20 extern PetscErrorCode FormFunction(SNES, Vec, Vec, void *); 88 PetscCall(SNESSetFunction(snes, r, FormFunction, (void *)F)); in main() 213 PetscErrorCode FormFunction(SNES snes, Vec x, Vec f, PetscCtx ctx) in FormFunction() function
|
| H A D | ex1.c | 54 static PetscErrorCode FormFunction(SNES, Vec, Vec, void *); 131 PetscCall(SNESSetFunction(snes, r, FormFunction, (void *)&user)); in main() 191 PetscCall(MatFDColoringSetFunction(fdcoloring, (MatFDColoringFn *)FormFunction, &user)); in main() 367 PetscErrorCode FormFunction(SNES snes, Vec X, Vec F, void *ptr) in FormFunction() function
|
| /petsc/src/binding/petsc4py/demo/legacy/wrap-swig/ |
| H A D | Bratu3D.h | 11 PetscErrorCode FormFunction(DM da, Vec x, Vec F, Params *p);
|
| /petsc/src/ts/tutorials/power_grid/ |
| H A D | ex3opt_fd.c | 20 PetscErrorCode FormFunction(Tao, Vec, PetscReal *, void *); 111 PetscCall(TaoSetObjective(tao, FormFunction, (void *)&ctx)); in main() 159 PetscErrorCode FormFunction(Tao tao, Vec P, PetscReal *f, PetscCtx ctx0) in FormFunction() function
|
| /petsc/src/ts/tutorials/ |
| H A D | ex7.c | 20 extern PetscErrorCode FormFunction(TS, PetscReal, Vec, Vec, void *), FormInitialSolution(DM, Vec); 56 PetscCall(TSSetRHSFunction(ts, NULL, FormFunction, da)); in main() 124 PetscErrorCode FormFunction(TS ts, PetscReal ftime, Vec X, Vec F, void *ptr) in FormFunction() function
|
| H A D | ex12.c | 28 extern PetscErrorCode FormFunction(TS, PetscReal, Vec, Vec, void *), FormInitialSolution(DM, Vec); 72 PetscCall(TSSetRHSFunction(ts, NULL, FormFunction, da)); in main() 131 PetscErrorCode FormFunction(TS ts, PetscReal ftime, Vec X, Vec F, void *ptr) in FormFunction() function
|
| H A D | ex1.c | 40 extern PetscErrorCode FormJacobian(TS, PetscReal, Vec, Mat, Mat, void *), FormFunction(TS, PetscRea… 103 PetscCall(TSSetRHSFunction(ts, NULL, FormFunction, &user)); in main() 212 PetscErrorCode FormFunction(TS ts, PetscReal t, Vec X, Vec F, void *ptr) in FormFunction() function
|
| /petsc/src/binding/petsc4py/demo/legacy/perftest/ |
| H A D | driver.c | 29 PetscErrorCode FormFunction(TS ts, PetscReal t, Vec X, Vec Xdot,Vec F, PetscCtx ctx) in FormFunction() function 77 PetscCall(TSSetIFunction(ts,f,FormFunction,app)); in RunTest()
|
| /petsc/src/ts/tutorials/phasefield/ |
| H A D | biharmonic2.c | 33 extern PetscErrorCode FormFunction(TS, PetscReal, Vec, Vec, Vec, void *), FormInitialSolution(DM, V… 103 PetscCall(TSSetIFunction(ts, NULL, FormFunction, &ctx)); in main() 183 PetscErrorCode FormFunction(TS ts, PetscReal ftime, Vec X, Vec Xdot, Vec F, void *ptr) in FormFunction() function
|
| H A D | biharmonic3.c | 33 extern PetscErrorCode FormFunction(TS, PetscReal, Vec, Vec, Vec, void *), FormInitialSolution(DM, V… 101 PetscCall(TSSetIFunction(ts, NULL, FormFunction, &ctx)); in main() 182 PetscErrorCode FormFunction(TS ts, PetscReal ftime, Vec X, Vec Xdot, Vec F, void *ptr) in FormFunction() function
|