Instructions for running the examples:

Verifying max_f using expansion and VC generator, for input of size 10:
  slverifier.sh -vcgen -expand -instantiations t=double,n=10 original/max_function.m
  
Using Boogie and expansion:
  slverifier.sh -boogie -expand -instantiations t=double,n=10 original/max_function.m
  
Using Boogie and axiomatisation:
  slverifier.sh -boogie -axioms -instantiations t=double,n=10 original/max_function.m
  
Verifying avg_filter with Boogie, expansion and k-induction with k=2:
  slverifier.sh -boogie -expand -kinduction 2 kinduction/avg_filter_k2.m
  
For using the Boogie backend, Boogie must be installed and available on the PATH.