xref: /petsc/src/ksp/pc/impls/python/pythonpc.c (revision 8cc725e69398de546bdc828d7b714aa2223f5218)
1 #include <petsc/private/pcimpl.h>          /*I "petscpc.h" I*/
2 
3 /*@C
4    PCPythonSetType - Initialize a PC object implemented in Python.
5 
6    Collective on PC
7 
8    Input Parameters:
9 +  pc - the preconditioner (PC) context.
10 -  pyname - full dotted Python name [package].module[.{class|function}]
11 
12    Options Database Key:
13 .  -pc_python_type <pyname> - python class
14 
15    Level: intermediate
16 
17 .seealso: `PCCreate()`, `PCSetType()`, `PCPYTHON`, `PetscPythonInitialize()`
18 @*/
19 PetscErrorCode  PCPythonSetType(PC pc,const char pyname[])
20 {
21   PetscFunctionBegin;
22   PetscValidHeaderSpecific(pc,PC_CLASSID,1);
23   PetscValidCharPointer(pyname,2);
24   PetscTryMethod(pc,"PCPythonSetType_C",(PC, const char[]),(pc,pyname));
25   PetscFunctionReturn(0);
26 }
27