Exemplo n.º 1
0
 public void AddReverse(OneWayArrayMap towardsThis)
 {
     for (int i = 0; i < towardsThis.Length; ++i)
     {
         ArrayConnection towardsConnection = towardsThis[i];
         if (towardsConnection.Type == Connection.Remained)
         {
             ArrayConnection connection;
             connection.J             = i;
             connection.Type          = Connection.Remained;
             Map[towardsConnection.J] = connection;
         }
     }
 }
Exemplo n.º 2
0
 public static OneWayArrayMap Combine(OneWayArrayMap a, OneWayArrayMap b)
 {
     throw new NotImplementedException();
 }