Home
last modified time | relevance | path

Searched refs:sols (Results 1 – 2 of 2) sorted by relevance

/petsc/src/ts/event/tests/
H A Dex3span.c180 Vec *sols; in main() local
182 PetscCall(TSGetEvaluationSolutions(ts, &num_sols, &sol_times, &sols)); in main()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DTS.pyx1550 cdef PetscVec *sols = NULL
1552 CHKERR(TSGetEvaluationSolutions(self.ts, &nt, &rtspan, &sols))
1554 if sols != NULL:
1555 sollist = [ref_Vec(sols[i]) for i from 0 <= i < nt]
1607 cdef PetscVec *sols = NULL
1608 CHKERR(TSGetEvaluationSolutions(self.ts, &nt, NULL, &sols))
1610 if sols != NULL:
1611 sollist = [ref_Vec(sols[i]) for i from 0 <= i < nt]