Brunet.Symphony.AHHandler.AHState.AHState C# (CSharp) Method

AHState() public method

public AHState ( AHAddress local, ConnectionList structs, ConnectionList leafs ) : System
local AHAddress
structs ConnectionList
leafs ConnectionList
return System
    public AHState(AHAddress local, ConnectionList structs, ConnectionList leafs) {
      Leafs = leafs;
      Structs = structs;
      Local = local;
      
      _directional = new DirectionalRouting(local, structs);
      _greedy = new GreedyRouting(local, structs);
      _annealing = new AnnealingRouting(local, structs);
    }

Same methods

AHHandler.AHState::AHState ( AHState old_state, ConnectionList leafs ) : System