示例#1
0
 public Network(
     IAction_history action_history,
     ISequence_finder sequence_finder
     )
 {
     this.action_history  = action_history;
     this.sequence_finder = sequence_finder;
 }
示例#2
0
 public Sequence_finder(
     IAction_history action_history,
     IFigure_provider figure_provider
     )
 {
     this.action_history  = action_history;
     this.figure_provider = figure_provider;
 }
示例#3
0
 public Network()
 {
     action_history  = new simple.Action_history();
     figure_provider = new Figure_provider(create_simple_figure);
     sequence_finder = new Sequence_finder(
         action_history,
         figure_provider
         );
     fill_figure_storage_with_base_signals();
 }