Edge.tpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // Copyright 2016, University of Freiburg,
  2. // Chair of Algorithms and Data Structures.
  3. // Authors: Patrick Brosi <brosi@informatik.uni-freiburg.de>
  4. // _____________________________________________________________________________
  5. template <typename N, typename E>
  6. Edge<N, E>::Edge(Node<N, E>* from, Node<N, E>* to, const E& pl)
  7. : _from(from), _to(to), _pl(pl) {
  8. }
  9. // _____________________________________________________________________________
  10. template <typename N, typename E>
  11. Node<N, E>* Edge<N, E>::getFrom() const {
  12. return _from;
  13. }
  14. // _____________________________________________________________________________
  15. template <typename N, typename E>
  16. Node<N, E>* Edge<N, E>::getTo() const {
  17. return _to;
  18. }
  19. // _____________________________________________________________________________
  20. template <typename N, typename E>
  21. Node<N, E>* Edge<N, E>::getOtherNd(const Node<N, E>* notNode) const {
  22. if (_to == notNode) return _from;
  23. return _to;
  24. }
  25. // _____________________________________________________________________________
  26. template <typename N, typename E>
  27. E& Edge<N, E>::pl() {
  28. return _pl;
  29. }
  30. // _____________________________________________________________________________
  31. template <typename N, typename E>
  32. const E& Edge<N, E>::pl() const {
  33. return _pl;
  34. }