Lines Matching refs:tsin
5717 PetscErrorCode TSClone(TS tsin, TS *tsout) in TSClone() argument
5725 PetscAssertPointer(tsin, 1); in TSClone()
5728 …(t, TS_CLASSID, "TS", "Time stepping", "TS", PetscObjectComm((PetscObject)tsin), TSDestroy, TSView… in TSClone()
5740 PetscCall(TSGetSNES(tsin, &snes_start)); in TSClone()
5743 PetscCall(TSGetDM(tsin, &dm)); in TSClone()
5746 t->adapt = tsin->adapt; in TSClone()
5749 t->trajectory = tsin->trajectory; in TSClone()
5752 t->event = tsin->event; in TSClone()
5755 t->problem_type = tsin->problem_type; in TSClone()
5756 t->ptime = tsin->ptime; in TSClone()
5757 t->ptime_prev = tsin->ptime_prev; in TSClone()
5758 t->time_step = tsin->time_step; in TSClone()
5759 t->max_time = tsin->max_time; in TSClone()
5760 t->steps = tsin->steps; in TSClone()
5761 t->max_steps = tsin->max_steps; in TSClone()
5762 t->equation_type = tsin->equation_type; in TSClone()
5763 t->atol = tsin->atol; in TSClone()
5764 t->rtol = tsin->rtol; in TSClone()
5765 t->max_snes_failures = tsin->max_snes_failures; in TSClone()
5766 t->max_reject = tsin->max_reject; in TSClone()
5767 t->errorifstepfailed = tsin->errorifstepfailed; in TSClone()
5769 PetscCall(TSGetType(tsin, &type)); in TSClone()
5774 t->cfltime = tsin->cfltime; in TSClone()
5775 t->cfltime_local = tsin->cfltime_local; in TSClone()
5776 t->exact_final_time = tsin->exact_final_time; in TSClone()
5778 t->ops[0] = tsin->ops[0]; in TSClone()
5780 if (((PetscObject)tsin)->fortran_func_pointers) { in TSClone()
5783 …for (i = 0; i < 10; i++) ((PetscObject)t)->fortran_func_pointers[i] = ((PetscObject)tsin)->fortran… in TSClone()