I have model a system in Coq. The input to this model is list of natural numbers. I want to repeat the output of model against the input of same type but different value for 3 or 4 time. I don't know the command which i should apply here,so that same model may be use multiple time against varying input of same type. Please guide me.
I'm not sure I understand your question. It sounds like you have a function written in Coq that you want to apply to two different lists of numbers. If you want to see the output of such a function, you can just write Print (f list1). Print (f list2).
to see the output of both function calls.
If there's something more complicated going on, can you explain in a bit more detail?
Check or Compute not Print
(deleted)
Last updated: Oct 13 2024 at 01:02 UTC