cgal/Apollonius_graph_2/examples/Apollonius_graph_2
Laurent Rineau e5001d1a50 update our CMake version 3.18...3.31
That will suppress the warnings about `CMP0167` (from CMake 3.30):

```
CMake Warning (dev) at cmake/modules/display-third-party-libs-versions.cmake:37 (find_package):
  Policy CMP0167 is not set: The FindBoost module is removed.  Run "cmake
  --help-policy CMP0167" for policy details.  Use the cmake_policy command to
  set the policy and suppress this warning.
```
2025-02-04 14:32:37 +01:00
..
data Move packages to trunk root 2006-02-14 08:58:13 +00:00
CMakeLists.txt update our CMake version 3.18...3.31 2025-02-04 14:32:37 +01:00
README gave the example files some more meaningful names 2006-03-08 22:49:31 +00:00
ag2_exact_traits.cpp Update ag2_exact_traits.cpp 2015-04-02 08:29:52 +03:00
ag2_exact_traits_sqrt.cpp Fix Apollonius_graph_2 2019-03-26 12:13:37 +01:00
ag2_filtered_traits_no_hidden.cpp No need to #include <CGAL/basic.h> 2011-03-13 17:06:06 +00:00
ag2_hierarchy.cpp No need to #include <CGAL/basic.h> 2011-03-13 17:06:06 +00:00

README

This is the examples directory for the Apollonius_graph_2 package
There are 4 example programs in this directory. Each one of these is
aimed at describing a different usage for the Apollonius_graph_2
package. In particular:

* ag2_exact_traits.C: a very basic example. It uses an exact number
  type that supports ring operations to achieve robustness.

* ag2_exact_traits_sqrt.C: it shows how to change the method the predicates
  are evaluated. By default the predicates use only the operations +,-,*
  and these are the only operations that is assumed they are exact. In
  this example we show how to change that and how to define the traits
  class so that the operations +,-,*,/,sqrt are used and are assumed
  exact. Again an exact number type is used as the number type.

* ag2_filtered_traits_no_hidden.C: a variation of the first example. The
  filtered traits are now used instead of and exact number type. We also
  show how to use another parameter for the algorithm, namely the one
  that indicates whether hidden weighted points are to be stored or not.

* ag2_hierarchy.C: same as the previous example except the fact that now
  we store the hidden weighted points and on top of that we use a
  hierarchy of Apollonius graphs.