예제 #1
0
 public GridMapperTests()
 {
     mapper = new GridMapper();
 }
예제 #2
0
파일: Core.cs 프로젝트: inau/graphlib
 public GridGraph(int cols, int rows)
     : base(cols * rows)
 {
     Mapping = new GridMapper(cols, rows);
 }