topcom.c: add missing include
[barvinok.git] / tests / iscc / fixed_power-4
blob5c332dc40a6ba21909ce3f811f4d5c8d760af96e
1 M := { A[] -> B[]; B[] -> C[]; T[i] -> T[i+1] };
2 P := M^-2;
3 assert(P = { C[] -> A[];  T[t] -> T[t - 2] });