public RandomLayoutAlgorithm(RandomLayoutAlgorithmParams prms)
     : base(default(TGraph), null)
 {
     _parameters = prms;
 }
 public RandomLayoutAlgorithm(TGraph graph, IDictionary <TVertex, Point> positions, RandomLayoutAlgorithmParams prms)
     : base(graph, positions)
 {
     _parameters = prms;
 }