1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
|
// Copyright (c) 2004-2008, 2010 Max-Planck-Institute Saarbruecken (Germany),
// and Tel-Aviv University (Israel). All rights reserved.
//
// This file is part of CGAL (www.cgal.org)
//
// $URL: https://github.com/CGAL/cgal/blob/v6.1.1/Arrangement_on_surface_2/include/CGAL/Curved_kernel_via_analysis_2/test/simple_models.h $
// $Id: include/CGAL/Curved_kernel_via_analysis_2/test/simple_models.h 08b27d3db14 $
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Pavel Emeliyanenko <asm@mpi-sb.mpg.de>
#ifndef CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_TEST_SIMPLE_MODELS_H
#define CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_TEST_SIMPLE_MODELS_H
#include <CGAL/license/Arrangement_on_surface_2.h>
/*!\file include/CGAL/Curved_kernel_via_analysis_2/test/simple_models.h
* \brief defines dummy implementations satisfying Curve_kernel_2
* concept requirenments
*/
#include <CGAL/config.h>
#include <CGAL/Arithmetic_kernel.h>
#include <CGAL/Polynomial.h>
#include <CGAL/Algebraic_kernel_d_1.h>
#include <CGAL/Arr_enums.h>
namespace CGAL {
//////////////////////////////////////////////////////////////////////////////
namespace internal {
struct Curve_2_model_rep {
int i_;
typedef CGAL::Polynomial< CGAL::Polynomial < int > > Poly_d;
Poly_d f_;
// DefaultConstructible
Curve_2_model_rep() :
i_(0) {
}
Curve_2_model_rep(int i) :
i_(i) {
}
};
struct Curve_2_model :
public ::CGAL::Handle_with_policy< Curve_2_model_rep > {
typedef Curve_2_model_rep Rep;
typedef ::CGAL::Handle_with_policy< Rep > Base;
typedef CGAL::Algebraic_kernel_d_1< CGAL::Arithmetic_kernel::Integer > AK_1;
typedef AK_1::Algebraic_real_1 Algebraic_real_1;
typedef double Bound;
typedef int Coefficient;
typedef CGAL::Polynomial< CGAL::Polynomial < int > > Poly_d;
typedef CGAL::Handle_id_less_than< Curve_2_model > Less_than;
// for total_degree (find smaller curve if two are available)
Poly_d f() const {
return ptr()->f_;
}
int num_events() const {
return 0;
}
void x_to_index(Algebraic_real_1 x, int& idx, bool& event) const {
return;
}
Bound boundary_value_in_interval(int i) {
return Bound(0);
}
Algebraic_real_1 y_at(Bound r, int arcno){
return Algebraic_real_1();
}
int arcs_over_interval(int id) const {
// this values are needed for the Event1_info.C test
if ((id % 2) == 0) {
return 10;
} else {
return 11;
}
}
template < class OutputIterator >
static bool decompose(Curve_2_model f, Curve_2_model g,
OutputIterator parts_of_f,
OutputIterator parts_of_g) {
return true;
}
bool operator== (const Curve_2_model& c) {
return id() == c.id();
}
};
std::ostream& operator<< (std::ostream& os, Curve_2_model c) {
return os;
}
std::istream& operator>> (std::istream& is, Curve_2_model& c) {
return is;
}
///////////////////////////////////////////////////////////////////////////////// Curve_pair_2
template < class Curve_ >
struct Curve_pair_2_model;
template < class Curve_ >
struct Curve_pair_2_model_rep {
typedef Curve_ Curve;
typedef Curve Algebraic_curve_2;
//typedef SoX::Event2_slice< Curve_pair_2< Curve > > Event2_slice;
Curve c1_;
Curve c2_;
// DefaultConstructible
Curve_pair_2_model_rep() :
c1_(), c2_() {
}
Curve_pair_2_model_rep(Curve c1, Curve c2) :
c1_(c1), c2_(c2) {
}
std::vector< int > slices_;
};
template < class Curve_ >
struct Curve_pair_2_model :
public ::CGAL::Handle_with_policy< Curve_pair_2_model_rep< Curve_ > > {
typedef Curve_ Curve;
typedef Curve Algebraic_curve_2;
typedef Curve_pair_2_model_rep< Curve > Rep;
typedef ::CGAL::Handle_with_policy< Rep > Base;
//typedef SoX::Event2_slice< Curve_pair_2< Curve > > Event2_slice;
// DefaultConstructible
Curve_pair_2_model() :
Base(Rep()) {
};
// Assignable
// Constructable from two curves
Curve_pair_2_model(Curve c1, Curve c2) :
Base(Rep(c1, c2)) {
}
Curve curve1() const {
return this->ptr()->c1_;
}
Curve curve2() const {
return this->ptr()->c2_;
}
int num_events() const {
return 0;
}
int event_x(int i) const {
return -1;
}
void x_to_index(typename Algebraic_curve_2::Algebraic_real_1 x,
int& idx, bool& event) const {
return;
}
};
/////////////////////////////////////////////////////////////////////////////
template < class AlgebraicCurveKernel_2>
class Xy_coordinate_2;
template < class AlgebraicCurveKernel_2 >
class Xy_coordinate_2_rep {
public:
// this first template argument
typedef AlgebraicCurveKernel_2 Algebraic_curve_kernel_2;
// myself
typedef Xy_coordinate_2_rep<Algebraic_curve_kernel_2> Self;
typedef typename Algebraic_curve_kernel_2::Curve_analysis_2
Curve_analysis_2;
typedef typename Curve_analysis_2::Algebraic_real_1 Algebraic_real_1;
// constructors
public:
// default constructor ()
Xy_coordinate_2_rep()
{ }
// data
// x-coordinate
Algebraic_real_1 _m_x;
// supporting curve
mutable Curve_analysis_2 _m_curve;
// arc number on curve
mutable int _m_arcno;
// befriending the handle
friend class Xy_coordinate_2<Algebraic_curve_kernel_2>;
};
template <class AlgebraicCurveKernel_2>
class Xy_coordinate_2 :
public
::CGAL::Handle_with_policy<Xy_coordinate_2_rep<AlgebraicCurveKernel_2> >
{
public:
//! \name public typedefs
//!@{
//! this instance's first template parameter
typedef AlgebraicCurveKernel_2 Algebraic_curve_kernel_2;
//! this instance's second template parameter
typedef Xy_coordinate_2_rep<AlgebraicCurveKernel_2> Rep;
//! this instance itself
typedef Xy_coordinate_2<Algebraic_curve_kernel_2> Self;
//! type of an algabraic curve
typedef typename Algebraic_curve_kernel_2::Curve_analysis_2
Curve_analysis_2;
//! type of Algebraic_real_1
typedef typename Curve_analysis_2::Algebraic_real_1 Algebraic_real_1;
//! the handle superclass
typedef ::CGAL::Handle_with_policy<Rep> Base;
//! type for approximation boundaries
typedef typename Algebraic_curve_kernel_2::Bound Bound;
//! type for boundary intervals
typedef std::pair<Bound, Bound> Bound_interval;
//!@}
public:
//!\name Constructors
//!@{
Xy_coordinate_2() :
Base(Rep()) {
}
Xy_coordinate_2(const Self& p) :
Base(static_cast<const Base&>(p)) {
}
Xy_coordinate_2(const Algebraic_real_1&, const Curve_analysis_2&, int) :
Base(Rep()) {
}
Xy_coordinate_2(Rep rep) :
Base(rep) {
}
public:
const Algebraic_real_1& x() const {
return this->ptr()->_m_x;
}
Algebraic_real_1 y() const {
return this->ptr()->_m_x;
}
Curve_analysis_2 curve() const {
return this->ptr()->_m_curve;
}
int arcno() const {
return -1;
}
//!@}
public:
//!\name comparison predicates
//!@{
CGAL::Comparison_result compare_x(const Self& q) const {
return CGAL::ZERO;
}
CGAL::Comparison_result compare_xy(const Self& q,
bool equal_x = false) const {
return CGAL::ZERO;
}
//! equality
bool operator == (const Self& q) const {return false;}
//! inequality
bool operator != (const Self& q) const {return false;}
//! less than in (x,y) lexicographic order
bool operator < (const Self& q) const {return false;}
//! less-equal in (x,y) lexicographic order
bool operator <= (const Self& q) const {return false;}
//! greater than in (x,y) lexicographic order
bool operator > (const Self& q) const {return false;}
//! greater-equal in (x,y) lexicographic order
bool operator >= (const Self& q) const {return false;}
public:
bool is_x_zero() const {
return false;
}
bool is_y_zero() const {
return false;
}
std::pair<double, double> to_double() const {
return std::make_pair(0.0, 0.0);
}
Bound_interval get_approximation_x() const {
return Bound_interval(0.0, 0.0);
}
Bound_interval get_approximation_y() const {
return Bound_interval(0.0, 0.0);
}
void refine_x() const {
}
void refine_x(int rel_prec) {
}
void refine_y() const {
}
//!@}
}; // class Xy_coordinate_2
template < class AlgebraicCurveKernel_2>
std::ostream& operator<< (std::ostream& os,
const Xy_coordinate_2<AlgebraicCurveKernel_2>& pt) {
return os;
}
///////////////////////////////////////////////////////////////////////////////
template < class CurveAnalysis_2>
class Status_line_CA_1;
template < class CurveAnalysis_2 >
class Status_line_CA_1_rep {
// this template argument
typedef CurveAnalysis_2 Curve_analysis_2;
// myself
typedef Status_line_CA_1_rep<Curve_analysis_2> Self;
// type of x-coordinate
typedef typename Curve_analysis_2::Algebraic_real_1
Algebraic_real_1;
// an instance of a size type
typedef typename Curve_analysis_2::size_type size_type;
// constructors
public:
// default constructor ()
Status_line_CA_1_rep()
{ }
//! x-coordinate of event info
mutable Algebraic_real_1 _m_x;
//! this status line id (# of event or # of interval depending on whether
//! or not this status line encodes an event)
size_type _m_index;
//! underlying curve analysis
Curve_analysis_2 _m_ca;
// befriending the handle
friend class Status_line_CA_1<Curve_analysis_2>;
};
template <class CurveAnalysis_2>
class Status_line_CA_1
: public ::CGAL::Handle_with_policy<
Status_line_CA_1_rep<CurveAnalysis_2> > {
public:
//!@{
//!\name typedefs
//! this instance's first template parameter
//! model of AlgebraicKernel_d_2::CurveAnalysis_2
typedef CurveAnalysis_2 Curve_analysis_2;
//! this instance's second template parameter
typedef Status_line_CA_1_rep<CurveAnalysis_2> Rep;
//! this instance itself
typedef Status_line_CA_1<Curve_analysis_2> Self;
//! type of x-coordinate
typedef typename Curve_analysis_2::Algebraic_real_1 Algebraic_real_1;
typedef typename Curve_analysis_2::Xy_coordinate_2 Xy_coordinate_2;
typedef typename Curve_analysis_2::size_type size_type;
//! encodes number of arcs to the left and to the right
typedef std::pair<size_type, size_type> Arc_pair;
//! the handle superclass
typedef ::CGAL::Handle_with_policy< Rep > Base;
//!@}
public:
//!\name constructors
//!@{
/*!\brief
* Default constructor
*/
Status_line_CA_1() :
Base(Rep()) {
}
/*!\brief
* copy constructor
*/
Status_line_CA_1(const Self& p) :
Base(static_cast<const Base&>(p)) {
}
/*!\brief
* constructs from a given representation
*/
Status_line_CA_1(Rep rep) :
Base(rep) {
}
//!@}
Algebraic_real_1 x() const {
return Algebraic_real_1();
}
Curve_analysis_2 curve_analysis_2() const {
return Curve_analysis_2();
}
size_type index() const {
return static_cast<size_type>(0);
}
bool covers_line() const {
return false;
}
bool has_f_fy_intersection() const {
return false;
}
bool is_event() const {
return false;
}
size_type number_of_events() const {
return static_cast<size_type>(0);
}
Xy_coordinate_2 algebraic_real_2(size_type j) const {
return Xy_coordinate_2();
}
Xy_coordinate_2 xy_coordinate_2(size_type j) const {
return algebraic_real_2(j);
}
Arc_pair number_of_incident_branches(int j) const {
return Arc_pair(0, 0);
}
Arc_pair number_of_branches_approaching_minus_infinity() const {
return Arc_pair(0, 0);
}
Arc_pair number_of_branches_approaching_plus_infinity() const {
return Arc_pair(0, 0);
}
}; // class Status_line_CA_1
template <class CurveAnalysis_2>
std::ostream& operator<< (std::ostream& os, const
Status_line_CA_1<CurveAnalysis_2>& cp_line) {
return os;
}
///////////////////////////////////////////////////////////////////////////////
template < class AlgebraicCurveKernel_2>
class Curve_analysis_2;
template < class AlgebraicCurveKernel_2 >
class Curve_analysis_2_rep {
public:
// this first template argument
typedef AlgebraicCurveKernel_2 Algebraic_curve_kernel_2;
// myself
typedef Curve_analysis_2_rep<Algebraic_curve_kernel_2> Self;
typedef typename Algebraic_curve_kernel_2::Polynomial_2
Polynomial_2;
// constructors
public:
// default constructor ()
Curve_analysis_2_rep()
{ }
// standard constructor
Curve_analysis_2_rep(const Polynomial_2& curve) {
}
mutable Polynomial_2 _m_curve;
// befriending the handle
friend class Curve_analysis_2<Algebraic_curve_kernel_2>;
};
template <class AlgebraicCurveKernel_2>
class Curve_analysis_2 :
public ::CGAL::Handle_with_policy<
Curve_analysis_2_rep<AlgebraicCurveKernel_2> > {
public:
//!@{
//! \name typedefs
//! this instance's first template parameter
typedef AlgebraicCurveKernel_2 Algebraic_curve_kernel_2;
//! this instance's second template parameter
typedef Curve_analysis_2_rep<AlgebraicCurveKernel_2> Rep;
//! x-coordinate type
typedef typename Algebraic_curve_kernel_2::Algebraic_real_1 Algebraic_real_1;
//! x-coordinate type
typedef typename Algebraic_curve_kernel_2::Xy_coordinate_2 Xy_coordinate_2;
//! type of a curve
typedef typename Algebraic_curve_kernel_2::Polynomial_2 Polynomial_2;
//! myself
typedef Curve_analysis_2<Algebraic_curve_kernel_2> Self;
//! an instance of a size type
typedef int size_type;
//! type of a vertical line
typedef internal::Status_line_CA_1<Self> Status_line_1;
//! the handle superclass
typedef ::CGAL::Handle_with_policy<Rep> Base;
//!@}
public:
//!\name Constructors
//!@{
//! \brief default constructor
Curve_analysis_2() :
Base(Rep()) {
}
/*!\brief
* copy constructor
*/
Curve_analysis_2(const Self& p) :
Base(static_cast<const Base&>(p)) {
}
//! \brief constructs a curve analysis from a given \c Curve_2 object
//!
//! for safety purposes implicit conversion from \c Curve_2 is disabled
explicit Curve_analysis_2(const Polynomial_2& c) :
Base(Rep(c)) {
}
/*!\brief
* constructs a curve analysis from a given representation
*/
Curve_analysis_2(Rep rep) :
Base(rep) {
}
//!@}
public:
//!\name Access functions
//!@{
//! \brief returns the defining polynomial of the analysis
Polynomial_2 polynomial_2() const {
return this->ptr()->_m_curve;
}
//! \brief alias for \c polynomial_2()
Polynomial_2 curve_2() const
{
return polynomial_2();
}
//! \brief returns number of vertical lines that encode an event
size_type number_of_status_lines_with_event() const {
return 0;
}
Status_line_1 status_line_at_event(size_type i) const {
return Status_line_1();
}
Status_line_1 status_line_of_interval(size_type i) const {
return Status_line_1();
}
Status_line_1 status_line_for_x(Algebraic_real_1 x,
CGAL::Sign perturb = CGAL::ZERO) const {
return Status_line_1();
}
Status_line_1 status_line_at_exact_x(Algebraic_real_1 x) const {
return Status_line_1();
}
/*!\brief
* returns a \c CGAL::Object that encodes the asymptotic value of a
* curve-arc approaching the left or the right boundary \c loc of the
* underlying parameter space.
*
* Allowed instantiations of the \c CGAL::Object are \c Algebraic_real_1 ,
* in case the x-asympote of the arc is finite, or
* \c CGAL::ARR_BOTTOM_BOUNDARY and \c CGAL::ARR_TOP_BOUNDARY in case
* the defined arc approaches the respective corners of the parameter
* space.
*
* \pre \c loc is either \c CGAL::ARR_LEFT_BOUNDARY or
* \c CGAL::ARR_RIGHT_BOUNDARY
*/
CGAL::Object asymptotic_value_of_arc(CGAL::Arr_parameter_space loc,
size_type arcno) const {
return CGAL::Object();
}
//!@}
}; // class Curve_analysis_2
//////////////////////////////////////////////////////////////////////////////
template < class CurvePairAnalysis_2, class Rep_ >
class Status_line_CPA_1;
template <class CurvePairAnalysis_2, class Rep>
std::ostream& operator<< (std::ostream&,
const Status_line_CPA_1<CurvePairAnalysis_2, Rep>&);
template < class CurvePairAnalysis_2 >
class Status_line_CPA_1_rep {
// this template argument
typedef CurvePairAnalysis_2 Curve_pair_analysis_2;
// myself
typedef Status_line_CPA_1_rep<Curve_pair_analysis_2> Self;
// an instance of a size type
typedef typename Curve_pair_analysis_2::size_type size_type;
// constructors
public:
// default constructor ()
Status_line_CPA_1_rep()
{ }
// stores this status line interval or event index of a curve pair
size_type _m_index;
// befriending the handle
friend class Status_line_CPA_1<Curve_pair_analysis_2, Self>;
};
template <class CurvePairAnalysis_2,
class Rep_ = internal::Status_line_CPA_1_rep<CurvePairAnalysis_2> >
class Status_line_CPA_1 :
public ::CGAL::Handle_with_policy< Rep_ >
{
public:
//!@{
//!\name typedefs
//! this instance's first template parameter
typedef CurvePairAnalysis_2 Curve_pair_analysis_2;
//! this instance's second template parameter
typedef Rep_ Rep;
//! this instance itself
typedef Status_line_CPA_1<Curve_pair_analysis_2, Rep> Self;
//! type of x-coordinate
typedef typename Curve_pair_analysis_2::Algebraic_real_1 Algebraic_real_1;
//! an instance of a size type
typedef typename Curve_pair_analysis_2::size_type size_type;
//! encodes number of arcs to the left and to the right
typedef std::pair<size_type, size_type> Arc_pair;
//! the handle superclass
typedef ::CGAL::Handle_with_policy< Rep > Base;
//!@}
public:
//!\name constructors
//!@{
Status_line_CPA_1() :
Base(Rep()) {
}
Status_line_CPA_1(const Self& p) :
Base(static_cast<const Base&>(p)) {
}
/*!\brief
* constructs from a given representation
*/
Status_line_CPA_1(Rep rep) :
Base(rep) {
}
Algebraic_real_1 x() const {
return Algebraic_real_1();
}
//! returns this vertical line's index (event or interval index)
size_type index() const {
return this->ptr()->_m_index;
}
size_type number_of_events() const {
return static_cast<size_type>(0);
}
size_type event_of_curve(size_type k, bool c) const {
return static_cast<size_type>(0);
}
size_type multiplicity_of_intersection(size_type j) const {
return static_cast<size_type>(0);
}
Arc_pair curves_at_event(size_type j) const {
return Arc_pair(0, 0);
}
bool is_event() const {
return false;
}
bool is_intersection() const {
return false;
}
//!@}
}; // class Status_line_CPA_1
template <class CurvePairAnalysis_2, class Rep>
std::ostream& operator<< (std::ostream& os,
const internal::Status_line_CPA_1<CurvePairAnalysis_2, Rep>& cpv_line) {
return os;
}
///////////////////////////////////////////////////////////////////////////////
template < class AlgebraicCurveKernel_2, class Rep_ >
class Curve_pair_analysis_2;
template < class AlgebraicCurveKernel_2 >
class Curve_pair_analysis_2_rep {
public:
// this first template argument
typedef AlgebraicCurveKernel_2 Algebraic_curve_kernel_2;
// myself
typedef Curve_pair_analysis_2_rep<Algebraic_curve_kernel_2> Self;
// type of 1-curve analysis
typedef typename Algebraic_curve_kernel_2::Curve_analysis_2
Curve_analysis_2;
// constructors
public:
// default constructor ()
Curve_pair_analysis_2_rep()
{ }
// data
Curve_analysis_2 _m_ca1, _m_ca2;
// befriending the handle
friend class Curve_pair_analysis_2<Algebraic_curve_kernel_2, Self>;
};
template <class AlgebraicCurveKernel_2,
class Rep_ = internal::Curve_pair_analysis_2_rep<AlgebraicCurveKernel_2> >
class Curve_pair_analysis_2 : public ::CGAL::Handle_with_policy< Rep_ >
{
public:
//!@{
//! \name typedefs
//! this instance's first template parameter
typedef AlgebraicCurveKernel_2 Algebraic_curve_kernel_2;
//! this instance's second template parameter
typedef Rep_ Rep;
//! x-coordinate type
typedef typename Algebraic_curve_kernel_2::Algebraic_real_1 Algebraic_real_1;
//! type of a curve point
typedef typename Algebraic_curve_kernel_2::Xy_coordinate_2 Xy_coordinate_2;
//! type of 1-curve analysis
typedef typename Algebraic_curve_kernel_2::Curve_analysis_2
Curve_analysis_2;
//! an instance of a size type
typedef typename Curve_analysis_2::size_type size_type;
//! myself
typedef Curve_pair_analysis_2<Algebraic_curve_kernel_2, Rep> Self;
//! type of a vertical line
typedef internal::Status_line_CPA_1<Self> Status_line_1;
//! the handle superclass
typedef ::CGAL::Handle_with_policy<Rep> Base;
//!@}
public:
//!\name Constructors
//!@{
//! \brief default constructor
Curve_pair_analysis_2() :
Base(Rep()) {
}
/*!\brief
* copy constructor
*/
Curve_pair_analysis_2(const Self& p) :
Base(static_cast<const Base&>(p)) {
}
Curve_pair_analysis_2(const Curve_analysis_2& ca1,
const Curve_analysis_2& ca2) :
Base(Rep()) {
}
Curve_pair_analysis_2(Rep rep) :
Base(rep) {
}
Curve_analysis_2 curve_analysis(bool c) const {
return this->ptr()->_m_ca1;
}
size_type number_of_status_lines_with_event() const {
return static_cast<size_type>(0);
}
size_type event_of_curve_analysis(size_type i, bool c) const {
return static_cast<size_type>(0);
}
Status_line_1 status_line_at_event(size_type i) const {
return Status_line_1();
}
Status_line_1 status_line_of_interval(size_type i) const {
return Status_line_1();
}
Status_line_1 status_line_for_x(Algebraic_real_1 x,
CGAL::Sign perturb = CGAL::ZERO) const {
return Status_line_1();
}
Status_line_1& status_line_at_exact_x(Algebraic_real_1 x) const {
return Status_line_1();
}
//!@}
}; // class Curve_pair_analysis_2
} // namespace internal
//////////////////////////////////////////////////////////////////////////////
class Simple_algebraic_kernel_2 {
// for each predicate functor defines a member function returning an instance
// of this predicate
#define CGAL_Algebraic_Kernel_pred(Y,Z) \
Y Z() const { return Y(); }
// the same for construction functors
#define CGAL_Algebraic_Kernel_cons(Y,Z) CGAL_Algebraic_Kernel_pred(Y,Z)
private:
public:
//! \name wrapping types
//!@{
//! type of an internal curve
typedef internal::Curve_2_model Internal_curve_2;
//! type of an internal curve pair
typedef internal::Curve_pair_2_model< Internal_curve_2 >
Internal_curve_pair_2;
//! type of internal x_coordinate
typedef Internal_curve_2::Algebraic_real_1 Internal_x_coordinate;
//! type of internal coefficient
typedef Internal_curve_2::Coefficient Internal_coefficient;
//!@}
public:
//! \name types and functors for \c ACK_2< >
//!@{
//! myself
typedef Simple_algebraic_kernel_2 Self;
//! univariate polynomial type
typedef CGAL::Polynomial<int> Polynomial_1;
//! bivariate polynomial type
typedef CGAL::Polynomial<Polynomial_1> Polynomial_2;
//! type of x-coordinate
typedef Internal_x_coordinate Algebraic_real_1;
//! type of bivariate coordinate
typedef internal::Xy_coordinate_2< Self > Algebraic_real_2;
//! type of Bound
typedef Internal_curve_2::Bound Bound;
//! type of Coordinate_1
typedef Algebraic_real_1 Coordinate_1;
//! type of Coordinate_2
typedef Algebraic_real_2 Coordinate_2;
//!@}
public:
//! \name types and functors for \c GPA_2< both >
//!@{
//! type of 1-curve analysis
typedef internal::Curve_analysis_2<Self> Curve_analysis_2;
//! type of 2-curve analysis
typedef internal::Curve_pair_analysis_2<Self> Curve_pair_analysis_2;
//!@}
//! \name public functors and predicates
//!@{
//! \brief default constructor
Simple_algebraic_kernel_2()
{ }
//! \brief constructs \c Curve_analysis_2 object, uses caching if appropriate
struct Construct_curve_2 :
public CGAL::cpp98::unary_function< Polynomial_2, Curve_analysis_2 >
{
//! \brief constructs an object from \c Algebraic_curve_kernel_2 type
//! no default constructor provided
Construct_curve_2(/*Self *pkernel_2*/)
{ }
Curve_analysis_2 operator()(const Polynomial_2& f) const
{
return Curve_analysis_2();
}
};
CGAL_Algebraic_Kernel_cons(Construct_curve_2, construct_curve_2_object);
/*! \brief
* constructs \c Curve_pair_analysis_2 from pair of 1-curve analysis,
* caching is used when appropriate
*/
struct Construct_curve_pair_2 :
public CGAL::cpp98::binary_function<Curve_analysis_2, Curve_analysis_2,
Curve_pair_analysis_2> {
Curve_pair_analysis_2 operator()
(const Curve_analysis_2& ca1, const Curve_analysis_2& ca2) const {
Curve_pair_analysis_2 cpa_2(ca1,ca2);
return cpa_2;
}
};
CGAL_Algebraic_Kernel_cons(Construct_curve_pair_2,
construct_curve_pair_2_object);
//! type of a curve point
typedef internal::Xy_coordinate_2<Self> Xy_coordinate_2;
//! returns the first coordinate of \c Xy_coordinate_2
struct Get_x_2 :
public CGAL::cpp98::unary_function<Xy_coordinate_2, Algebraic_real_1> {
Algebraic_real_1 operator()(const Xy_coordinate_2& xy) const {
return xy.x();
}
};
CGAL_Algebraic_Kernel_cons(Get_x_2, Get_x_2_object);
//! returns the second coordinate of \c Xy_coordinate_2
struct Get_y_2 :
public CGAL::cpp98::unary_function<Xy_coordinate_2, Algebraic_real_1> {
Algebraic_real_1 operator()(const Xy_coordinate_2& xy) const {
return xy.y();
}
};
CGAL_Algebraic_Kernel_cons(Get_y_2, Get_y_2_object);
struct Refine_x_2 :
public CGAL::cpp98::unary_function<Xy_coordinate_2, void> {
void operator()(const Xy_coordinate_2& r) const { }
void operator()(Xy_coordinate_2& r, int rel_prec) const { }
};
CGAL_Algebraic_Kernel_pred(Refine_x_2, refine_x_2_object);
struct Refine_y_2 :
public CGAL::cpp98::unary_function<Xy_coordinate_2, void> {
void operator()(const Xy_coordinate_2& r) const { }
void operator()(Xy_coordinate_2& r, int rel_prec) const { }
};
CGAL_Algebraic_Kernel_pred(Refine_y_2, refine_y_2_object);
//! computes the current lower boundary of the first coordinate of \c r
struct Lower_boundary_x_2 {
typedef Xy_coordinate_2 agrument_type;
typedef Bound result_type;
result_type operator()(const Xy_coordinate_2& r) {
return static_cast<result_type>(0);
}
};
CGAL_Algebraic_Kernel_cons(Lower_boundary_x_2, lower_boundary_x_2_object);
//! computes the current upper boundary of the first coordinate of \c r
struct Upper_boundary_x_2 {
typedef Xy_coordinate_2 agrument_type;
typedef Bound result_type;
result_type operator()(const Xy_coordinate_2& r) {
return static_cast<result_type>(0);
}
};
CGAL_Algebraic_Kernel_cons(Upper_boundary_x_2, upper_boundary_x_2_object);
//! computes the current lower boundary of the second coordinate of \c r
struct Lower_boundary_y_2 {
typedef Xy_coordinate_2 agrument_type;
typedef Bound result_type;
result_type operator()(const Xy_coordinate_2& r) {
return static_cast<result_type>(0);
}
};
CGAL_Algebraic_Kernel_cons(Lower_boundary_y_2, lower_boundary_y_2_object);
//! computes the current lower boundary of the second coordinate of \c r
struct Upper_boundary_y_2 {
typedef Xy_coordinate_2 agrument_type;
typedef Bound result_type;
result_type operator()(const Xy_coordinate_2& r) {
return static_cast<result_type>(0);
}
};
CGAL_Algebraic_Kernel_cons(Upper_boundary_y_2, upper_boundary_y_2_object);
//! returns the number of boundary type in-between x-coordinates of two
//! Xy_coordinate_2 objects
struct Bound_between_x_2 {
typedef Xy_coordinate_2 first_agrument_type;
typedef Xy_coordinate_2 second_agrument_type;
typedef Bound result_type;
result_type operator()(const Xy_coordinate_2& r1,
const Xy_coordinate_2& r2) const {
return static_cast<result_type>(0);
}
};
CGAL_Algebraic_Kernel_cons(Bound_between_x_2,
boundary_between_x_2_object);
//! returns the number of boundary type in-between y-coordinates of two
//! Xy_coordinate_2 objects
struct Bound_between_y_2 {
typedef Xy_coordinate_2 first_agrument_type;
typedef Xy_coordinate_2 second_agrument_type;
typedef Bound result_type;
result_type operator()(const Xy_coordinate_2& r1,
const Xy_coordinate_2& r2) const {
return static_cast<result_type>(0);
}
};
CGAL_Algebraic_Kernel_cons(Bound_between_y_2,
boundary_between_y_2_object);
//! \brief comparison of x-coordinates
struct Compare_x_2 :
public CGAL::cpp98::binary_function<Algebraic_real_1, Algebraic_real_1,
Comparison_result > {
Comparison_result operator()(const Algebraic_real_1& x1,
const Algebraic_real_1& x2) const {
return CGAL::EQUAL;
}
Comparison_result operator()(const Xy_coordinate_2& xy1,
const Xy_coordinate_2& xy2) const {
return CGAL::EQUAL;
}
};
CGAL_Algebraic_Kernel_pred(Compare_x_2, compare_x_2_object);
//! \brief comparison of y-coordinates of two points
struct Compare_y_2 :
public CGAL::cpp98::binary_function< Xy_coordinate_2, Xy_coordinate_2,
Comparison_result > {
Comparison_result operator()(const Xy_coordinate_2& xy1,
const Xy_coordinate_2& xy2) const {
return CGAL::EQUAL;
}
};
CGAL_Algebraic_Kernel_pred(Compare_y_2, compare_y_2_object);
//! lexicographical comparison of two objects of type \c Xy_coordinate_2
//!
//! \c equal_x specifies that only y-coordinates need to be compared
struct Compare_xy_2 :
public CGAL::cpp98::binary_function<Xy_coordinate_2, Xy_coordinate_2,
Comparison_result >
{
Comparison_result operator()(const Xy_coordinate_2& xy1,
const Xy_coordinate_2& xy2, bool equal_x = false) const {
return CGAL::EQUAL;
}
};
CGAL_Algebraic_Kernel_pred(Compare_xy_2, compare_xy_2_object);
//! \brief checks whether curve has only finitely many self-intersection
//! points, i.e., it has no self-overlapped continuous parts
//!
//! for algebraic curves this means that supporting polynomial is
//! square-free
struct Has_finite_number_of_self_intersections_2 :
public CGAL::cpp98::unary_function< Polynomial_2, bool > {
bool operator()(const Polynomial_2& p) const {
return true; //is_square_free(p);
}
};
CGAL_Algebraic_Kernel_pred(Has_finite_number_of_self_intersections_2,
has_finite_number_of_self_intersections_2_object);
//! \brief checks whether a curve pair has finitely many intersections,
//! in other words, whether two curves have no continuous common part
//!
//! in case of algebraic curves: checks whether supporting polynomials are
//! coprime
struct Has_finite_number_of_intersections_2 :
public CGAL::cpp98::binary_function< Curve_analysis_2, Curve_analysis_2, bool > {
bool operator()(const Curve_analysis_2& c1,
const Curve_analysis_2& c2) const {
return true;
}
};
CGAL_Algebraic_Kernel_pred(Has_finite_number_of_intersections_2,
has_finite_number_of_intersections_2_object);
//! set of various curve and curve pair decomposition functions
struct Decompose_2 {
//! default constructor
Decompose_2(/*Self *pkernel_2*/)
{ }
Polynomial_2 operator()(const Polynomial_2& p) {
return p;
}
template< class OutputIterator1, class OutputIterator2 >
int operator()( const Curve_analysis_2& c, OutputIterator1 fit,
OutputIterator2 mit ) const {
return 0;
}
template < class OutputIterator >
bool operator()(const Curve_analysis_2& c1,
const Curve_analysis_2& c2,
OutputIterator oi1, OutputIterator oi2, OutputIterator oib) {
return false;
}
private:
//! pointer to Algebraic_curve_kernel_2 (for caching issues)
/*Self *_m_pkernel_2; */
};
CGAL_Algebraic_Kernel_cons(Decompose_2, decompose_2_object);
//!@}
public:
//! \name types and functors for \c GPA_2<Algebraic_kernel_d_2>
//!@{
typedef Construct_curve_2 Construct_polynomial_2_;
typedef Has_finite_number_of_self_intersections_2 Is_square_free_2;
typedef Has_finite_number_of_intersections_2 Is_coprime_2;
typedef Decompose_2 Make_square_free_2;
typedef Decompose_2 Square_free_factorize;
typedef Decompose_2 Make_coprime_2;
//! \brief computes the derivative w.r.t. the first (innermost) variable
struct Derivative_x_2 :
public CGAL::cpp98::unary_function< Polynomial_2, Polynomial_2 > {
Polynomial_2 operator()(const Polynomial_2& p) const {
return p;
}
};
CGAL_Algebraic_Kernel_cons(Derivative_x_2, derivative_x_2_object);
//! \brief computes the derivative w.r.t. the first (outermost) variable
struct Derivative_y_2 :
public CGAL::cpp98::unary_function< Polynomial_2, Polynomial_2 > {
Polynomial_2 operator()(const Polynomial_2& p) const {
return p;
}
};
CGAL_Algebraic_Kernel_cons(Derivative_y_2, derivative_y_2_object);
struct X_critical_points_2 {
template <class OutputIterator>
OutputIterator operator()(const Polynomial_2& p,
OutputIterator oi) const {
return oi;
}
//! \brief computes the ith x-critical point of polynomial \c p
Xy_coordinate_2 operator()(const Polynomial_2& p, int i) const {
return Xy_coordinate_2();
}
};
CGAL_Algebraic_Kernel_cons(X_critical_points_2,
x_critical_points_2_object);
struct Y_critical_points_2 {
//! \brief copies in the output iterator the y-critical points of
//! polynomial \c p as objects of type \c Xy_coordinate_2
template <class OutputIterator>
OutputIterator operator()(const Polynomial_2& p,
OutputIterator oi) const {
return oi;
}
//! \brief computes the ith y-critical point of polynomial \c p
Xy_coordinate_2 operator()(const Polynomial_2& p, int i) const {
return Xy_coordinate_2();
}
};
CGAL_Algebraic_Kernel_cons(Y_critical_points_2,
y_critical_points_2_object);
/*!\brief
* computes the sign of a bivariate polynomial \c p evaluated at the root
* \c r of a system of two bivariate polynomial equations
*
* returns a value convertible to \c CGAL::Sign
*/
struct Sign_at_2 :
public CGAL::cpp98::binary_function< Polynomial_2, Xy_coordinate_2, Sign > {
Sign operator()(const Polynomial_2& p, const Xy_coordinate_2& r) const
{
return CGAL::ZERO;
}
};
CGAL_Algebraic_Kernel_pred(Sign_at_2, sign_at_2_object);
struct Solve_2 {
template <class OutputIteratorRoots, class OutputIteratorMult>
std::pair<OutputIteratorRoots, OutputIteratorMult>
operator()(const Polynomial_2& p1, const Polynomial_2& p2,
OutputIteratorRoots roots, OutputIteratorMult mults) const
{
return std::make_pair(roots, mults);
}
};
CGAL_Algebraic_Kernel_cons(Solve_2, solve_2_object);
#undef CGAL_Algebraic_Kernel_pred
#undef CGAL_Algebraic_Kernel_cons
//!@}
}; // class Algebraic_curve_kernel_2
} //namespace CGAL
#endif // CGAL_CURVED_KERNEL_VIA_ANALYSIS_2_TEST_SIMPLE_MODELS_H
// EOF
|