How to encapsulate state variables in NModel?
I have a model program that represents message flow along a chain of servers: public class MyModel { static bool x_send_msg1 = false; // has X sent msg1? static bool y_recv_msg1 = false; // has Y received msg1? static bool y_send_msg1 = false; // has Y sent msg1? static bool z_send_msg1 = false; // has Z received msg1? ...