I am using an iterative method to solve an optimization problem. Therefore I need to use armijo-backtracking, where I need to check whether
for $$ \alpha \rightarrow 0 $$ check if
$$ j(\varphi + \alpha v) \leq j(\varphi) + \tau \alpha \cdot (j'(\varphi), v) $$
here $$ j(\varphi + \alpha v) $$, $$ j(\varphi)$$ and $$ j'(\varphi) v $$ are integrals, which need to be assembled using "assemble()".
when $$ \alpha \rightarrow 0$$ therefore it is making a difference whether I am using
assemble() on each single form, or using it on the form as a whole.
Are there any suggestions how to set the accuracy?