[PPL-devel] [GIT] ppl/ppl(master): Conflicts resolved.

Roberto Bagnara bagnara at cs.unipr.it
Mon Nov 7 10:25:25 CET 2011


Module: ppl/ppl
Branch: master
Commit: a9a6632bfcc7a546a2a7edcb636e47f60e4839b4
URL:    http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=a9a6632bfcc7a546a2a7edcb636e47f60e4839b4

Author: Roberto Bagnara <bagnara at cs.unipr.it>
Date:   Mon Nov  7 10:25:15 2011 +0100

Conflicts resolved.

---

 src/BD_Shape.inlines.hh |   22 ++--------------------
 1 files changed, 2 insertions(+), 20 deletions(-)

diff --git a/src/BD_Shape.inlines.hh b/src/BD_Shape.inlines.hh
index 6004ae7..48c0241 100644
--- a/src/BD_Shape.inlines.hh
+++ b/src/BD_Shape.inlines.hh
@@ -798,22 +798,13 @@ BD_Shape<T>::CC76_extrapolation_assign(const BD_Shape& y, unsigned* tp) {
 template <typename T>
 inline void
 BD_Shape<T>::H79_widening_assign(const BD_Shape& y, unsigned* tp) {
-<<<<<<< HEAD
-  // See the documentation for polyhedra.
-  C_Polyhedron px(constraints());
-  C_Polyhedron py(y.constraints());
-  px.H79_widening_assign(py, tp);
-  BD_Shape x(px);
-  m_swap(x);
-=======
   // Compute the H79 widening on polyhedra.
   // TODO: provide a direct implementation.
   C_Polyhedron ph_x(constraints());
   C_Polyhedron ph_y(y.constraints());
   ph_x.H79_widening_assign(ph_y, tp);
   BD_Shape x(ph_x);
-  swap(x);
->>>>>>> Project vocabulary fixes.
+  m_swap(x);
   PPL_ASSERT(OK());
 }
 
@@ -828,22 +819,13 @@ inline void
 BD_Shape<T>::limited_H79_extrapolation_assign(const BD_Shape& y,
 					      const Constraint_System& cs,
 					      unsigned* tp) {
-<<<<<<< HEAD
-  // See the documentation for polyhedra.
-  C_Polyhedron px(constraints());
-  C_Polyhedron py(y.constraints());
-  px.limited_H79_extrapolation_assign(py, cs, tp);
-  BD_Shape x(px);
-  m_swap(x);
-=======
   // Compute the limited H79 extrapolation on polyhedra.
   // TODO: provide a direct implementation.
   C_Polyhedron ph_x(constraints());
   C_Polyhedron ph_y(y.constraints());
   ph_x.limited_H79_extrapolation_assign(ph_y, cs, tp);
   BD_Shape x(ph_x);
-  swap(x);
->>>>>>> Project vocabulary fixes.
+  m_swap(x);
   PPL_ASSERT(OK());
 }
 




More information about the PPL-devel mailing list