Thank You everyone for the hints with stacksize extension. It helped me in some extent. I use now 500G stack size:
cll:- set_prolog_stack(global, limit(500 000 000 000)), set_prolog_stack(trail, limit(500 000 000 000)),
set_prolog_stack(local, limit(500 000 000 000)), sudoku.
sudoku:-
a11(A11),
a12(A12),A11==A12,
a13(A13),A13==A11,A13==A12,
a21(A21),A21==A11,A21==A12,A21==A13,
a22(A22),A22==A11,A22==A12,A22==A13,A22==A21,
a23(A23),A23==A11,A23==A12,A23==A13,A23==A21,A23==A22,
a31(A31),A31==A11,A31==A12,A31==A13,A31==A21,A31==A22,A31==A23, …
and it helped to extend the problem search space from f32, to almost the end of g33…
but hier - I think I encountered a different limit… I attach an explanation…
so I am affraid… I have to find another solution…