#include /*I "petscsnes.h" I*/ /*@ SNESPythonSetType - Initialize a `SNES` object implemented in Python. Collective Input Parameters: + snes - the nonlinear solver (`SNES`) context. - pyname - full dotted Python name [package].module[.{class|function}] Options Database Key: . -snes_python_type - python class Level: intermediate .seealso: [](ch_snes), `SNES`, `SNESCreate()`, `SNESSetType()`, `SNESPYTHON`, `PetscPythonInitialize()`, `SNESPythonGetType()` @*/ PetscErrorCode SNESPythonSetType(SNES snes, const char pyname[]) { PetscFunctionBegin; PetscValidHeaderSpecific(snes, SNES_CLASSID, 1); PetscAssertPointer(pyname, 2); PetscTryMethod(snes, "SNESPythonSetType_C", (SNES, const char[]), (snes, pyname)); PetscFunctionReturn(PETSC_SUCCESS); } /*@ SNESPythonGetType - Get the type of a `SNES` object implemented in Python set with `SNESPythonSetType()` Not Collective Input Parameter: . snes - the nonlinear solver (`SNES`) context. Output Parameter: . pyname - full dotted Python name [package].module[.{class|function}] Level: intermediate .seealso: [](ch_snes), `SNES`, `SNESCreate()`, `SNESSetType()`, `SNESPYTHON`, `PetscPythonInitialize()`, `SNESPythonSetType()` @*/ PetscErrorCode SNESPythonGetType(SNES snes, const char *pyname[]) { PetscFunctionBegin; PetscValidHeaderSpecific(snes, SNES_CLASSID, 1); PetscAssertPointer(pyname, 2); PetscUseMethod(snes, "SNESPythonGetType_C", (SNES, const char *[]), (snes, pyname)); PetscFunctionReturn(PETSC_SUCCESS); }