Example #1
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
 }
Example #2
0
 /**
  * Constructs an AbstractGraph with the specified size.
  *
  * @param integer $size The maximum number of vertices.
  */
 public function __construct($size)
 {
     parent::__construct();
     $this->numberOfVertices = 0;
     $this->numberOfEdges = 0;
     $this->vertex = new BasicArray($size);
 }
Example #3
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct(new ParameterBag($this->getDefaultParameters()));
 }
Example #4
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     $this->parameters = array();
     parent::__construct(new ParameterBag($this->parameters));
 }
Example #5
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct(new ParameterBag(self::$parameters));
 }