/usr/include/CGAL/Uncertain.h is in libcgal-dev 4.2-5ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // Copyright (c) 2005-2008 INRIA Sophia-Antipolis (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org); you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 3 of the License,
// or (at your option) any later version.
//
// Licensees holding a valid commercial license may use this file in
// accordance with the commercial license agreement provided with the software.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
//
// $URL$
// $Id$
//
// Author(s) : Sylvain Pion
#ifndef CGAL_UNCERTAIN_H
#define CGAL_UNCERTAIN_H
#include <CGAL/config.h>
#include <CGAL/assertions.h>
#include <CGAL/enum.h>
#include <CGAL/Profile_counter.h>
#include <stdexcept>
#include <typeinfo>
namespace CGAL {
namespace internal {
// Accessory traits class to provide min and max value of a type.
// Specialized for bool and CGAL's enums.
template < typename T >
struct Minmax_traits;
template <>
struct Minmax_traits <bool>
{
static const bool min = false;
static const bool max = true;
};
template <>
struct Minmax_traits <Sign>
{
static const Sign min = NEGATIVE;
static const Sign max = POSITIVE;
};
template <>
struct Minmax_traits <Bounded_side>
{
static const Bounded_side min = ON_UNBOUNDED_SIDE;
static const Bounded_side max = ON_BOUNDED_SIDE;
};
template <>
struct Minmax_traits <Angle>
{
static const Angle min = OBTUSE;
static const Angle max = ACUTE;
};
} // namespace internal
// Exception type for the automatic conversion.
class Uncertain_conversion_exception
: public std::range_error
{
public:
Uncertain_conversion_exception(const std::string &s)
: std::range_error(s) {}
~Uncertain_conversion_exception() throw() {}
};
// Encodes a range [inf,sup] of values of type T.
// T can be enums or bool.
template < typename T >
class Uncertain
{
T _i, _s;
public:
typedef T value_type;
typedef CGAL::Uncertain_conversion_exception Uncertain_conversion_exception;
Uncertain()
: _i(), _s() {}
Uncertain(T t)
: _i(t), _s(t) {}
Uncertain(T i, T s)
: _i(i), _s(s) { CGAL_precondition(i <= s); }
Uncertain& operator=(T t)
{
_i = _s = t;
return *this;
}
T inf() const { return _i; }
T sup() const { return _s; }
bool is_same(Uncertain u) const { return _i == u._i && _s == u._s; }
bool is_certain() const { return _i == _s; }
T make_certain() const
{
if (is_certain())
return _i;
CGAL_PROFILER(std::string("Uncertain_conversion_exception thrown for CGAL::Uncertain< ")
+ typeid(T).name() + " >");
throw Uncertain_conversion_exception(
"Undecidable conversion of CGAL::Uncertain<T>");
}
#ifndef CGAL_NO_UNCERTAIN_CONVERSION_OPERATOR
// NB : the general conversion to bool might be too risky.
// boost::tribool uses a more restricted conversion (see below).
operator T() const
{
return make_certain();
}
#else
private:
struct dummy {
void nonnull() {};
};
typedef void (dummy::*safe_bool)();
public:
operator safe_bool() const
{
return make_certain() ? &dummy::nonnull : 0;
}
#endif
static Uncertain indeterminate();
};
// Access functions
// ----------------
template < typename T >
inline
T inf(Uncertain<T> i)
{
return i.inf();
}
template < typename T >
inline
T sup(Uncertain<T> i)
{
return i.sup();
}
// Basic functions
// ---------------
#if 1
// Commenting them out allows the test-suite to spot those predicates that do not
// propagate Uncertain-ty correctly. But they should probably be enabled
// for now, for backward-compatibility.
template < typename T >
inline
bool is_certain(T)
{
return true;
}
template < typename T >
inline
T get_certain(T t)
{
return t;
}
#endif
template < typename T >
inline
bool is_certain(Uncertain<T> a)
{
return a.is_certain();
}
template < typename T >
inline
T get_certain(Uncertain<T> a)
{
CGAL_assertion(is_certain(a));
return a.inf();
}
template < typename T >
inline
Uncertain<T>
Uncertain<T>::indeterminate()
{
return Uncertain<T>(internal::Minmax_traits<T>::min, internal::Minmax_traits<T>::max);
}
namespace internal {
// helper class
template < typename T >
struct Indeterminate_helper {
typedef T result_type;
result_type operator()() const
{ return T(); }
};
template < typename T >
struct Indeterminate_helper< Uncertain<T> > {
typedef Uncertain<T> result_type;
result_type operator()() const
{ return Uncertain<T>::indeterminate(); }
};
} // namespace internal
template < typename T >
inline
typename internal::Indeterminate_helper<T>::result_type
indeterminate()
{
return internal::Indeterminate_helper<T>()();
}
template < typename T >
inline
bool is_indeterminate(T)
{
return false;
}
template < typename T >
inline
bool is_indeterminate(Uncertain<T> a)
{
return ! a.is_certain();
}
// certainly/possibly
// ------------------
inline bool certainly(bool b) { return b; }
inline bool possibly(bool b) { return b; }
inline bool certainly_not(bool b) { return !b; }
inline bool possibly_not(bool b) { return !b; }
inline
bool certainly(Uncertain<bool> c)
{
return is_certain(c) && get_certain(c);
}
inline
bool possibly(Uncertain<bool> c)
{
return !is_certain(c) || get_certain(c);
}
inline
bool certainly_not(Uncertain<bool> c)
{
return is_certain(c) && !get_certain(c);
}
inline
bool possibly_not(Uncertain<bool> c)
{
return !is_certain(c) || !get_certain(c);
}
// Boolean operations for Uncertain<bool>
// --------------------------------------
inline
Uncertain<bool> operator!(Uncertain<bool> a)
{
return Uncertain<bool>(!a.sup(), !a.inf());
}
inline
Uncertain<bool> operator|(Uncertain<bool> a, Uncertain<bool> b)
{
return Uncertain<bool>(a.inf() | b.inf(), a.sup() | b.sup());
}
inline
Uncertain<bool> operator|(bool a, Uncertain<bool> b)
{
return Uncertain<bool>(a | b.inf(), a | b.sup());
}
inline
Uncertain<bool> operator|(Uncertain<bool> a, bool b)
{
return Uncertain<bool>(a.inf() | b, a.sup() | b);
}
inline
Uncertain<bool> operator&(Uncertain<bool> a, Uncertain<bool> b)
{
return Uncertain<bool>(a.inf() & b.inf(), a.sup() & b.sup());
}
inline
Uncertain<bool> operator&(bool a, Uncertain<bool> b)
{
return Uncertain<bool>(a & b.inf(), a & b.sup());
}
inline
Uncertain<bool> operator&(Uncertain<bool> a, bool b)
{
return Uncertain<bool>(a.inf() & b, a.sup() & b);
}
// operator&& and operator|| are not provided because, unless their bool counterpart,
// they lack the "short-circuiting" property.
// We provide macros CGAL_AND and CGAL_OR, which attempt to emulate their behavior.
// Key things : do not evaluate expressions twice, and evaluate the right hand side
// expression only when needed.
// TODO : C++0x lambdas should be able to help here.
#ifdef CGAL_CFG_NO_STATEMENT_EXPRESSIONS
# define CGAL_AND(X, Y) ((X) && (Y))
# define CGAL_OR(X, Y) ((X) || (Y))
#else
# define CGAL_AND(X, Y) \
__extension__ \
({ CGAL::Uncertain<bool> CGAL_TMP = (X); \
CGAL::certainly_not(CGAL_TMP) ? CGAL::make_uncertain(false) \
: CGAL_TMP & CGAL::make_uncertain((Y)); })
# define CGAL_OR(X, Y) \
__extension__ \
({ CGAL::Uncertain<bool> CGAL_TMP = (X); \
CGAL::certainly(CGAL_TMP) ? CGAL::make_uncertain(true) \
: CGAL_TMP | CGAL::make_uncertain((Y)); })
#endif
#define CGAL_AND_3(X, Y, Z) CGAL_AND(X, CGAL_AND(Y, Z))
#define CGAL_OR_3(X, Y, Z) CGAL_OR(X, CGAL_OR(Y, Z))
// Equality operators
template < typename T >
inline
Uncertain<bool> operator==(Uncertain<T> a, Uncertain<T> b)
{
if (a.sup() < b.inf() || b.sup() < a.inf())
return false;
if (is_certain(a) && is_certain(b)) // test above implies get_certain(a) == get_certain(b)
return true;
return Uncertain<bool>::indeterminate();
}
template < typename T >
inline
Uncertain<bool> operator==(Uncertain<T> a, T b)
{
if (a.sup() < b || b < a.inf())
return false;
if (is_certain(a))
return true;
return Uncertain<bool>::indeterminate();
}
template < typename T >
inline
Uncertain<bool> operator==(T a, Uncertain<T> b)
{
return b == a;
}
template < typename T >
inline
Uncertain<bool> operator!=(Uncertain<T> a, Uncertain<T> b)
{
return ! (a == b);
}
template < typename T >
inline
Uncertain<bool> operator!=(Uncertain<T> a, T b)
{
return ! (a == b);
}
template < typename T >
inline
Uncertain<bool> operator!=(T a, Uncertain<T> b)
{
return ! (a == b);
}
// Comparison operators (useful for enums only, I guess (?) ).
template < typename T >
inline
Uncertain<bool> operator<(Uncertain<T> a, Uncertain<T> b)
{
if (a.sup() < b.inf())
return true;
if (a.inf() >= b.sup())
return false;
return Uncertain<bool>::indeterminate();
}
template < typename T >
inline
Uncertain<bool> operator<(Uncertain<T> a, T b)
{
if (a.sup() < b)
return true;
if (a.inf() >= b)
return false;
return Uncertain<bool>::indeterminate();
}
template < typename T >
inline
Uncertain<bool> operator<(T a, Uncertain<T> b)
{
if (a < b.inf())
return true;
if (a >= b.sup())
return false;
return Uncertain<bool>::indeterminate();
}
template < typename T >
inline
Uncertain<bool> operator>(Uncertain<T> a, Uncertain<T> b)
{
return b < a;
}
template < typename T >
inline
Uncertain<bool> operator>(Uncertain<T> a, T b)
{
return b < a;
}
template < typename T >
inline
Uncertain<bool> operator>(T a, Uncertain<T> b)
{
return b < a;
}
template < typename T >
inline
Uncertain<bool> operator<=(Uncertain<T> a, Uncertain<T> b)
{
return !(b < a);
}
template < typename T >
inline
Uncertain<bool> operator<=(Uncertain<T> a, T b)
{
return !(b < a);
}
template < typename T >
inline
Uncertain<bool> operator<=(T a, Uncertain<T> b)
{
return !(b < a);
}
template < typename T >
inline
Uncertain<bool> operator>=(Uncertain<T> a, Uncertain<T> b)
{
return !(a < b);
}
template < typename T >
inline
Uncertain<bool> operator>=(Uncertain<T> a, T b)
{
return !(a < b);
}
template < typename T >
inline
Uncertain<bool> operator>=(T a, Uncertain<T> b)
{
return !(a < b);
}
// Maker function (a la std::make_pair).
template < typename T >
inline
Uncertain<T> make_uncertain(T t)
{
return Uncertain<T>(t);
}
template < typename T >
inline
Uncertain<T> make_uncertain(Uncertain<T> t)
{
return t;
}
// make_certain() : Forcing a cast to certain (possibly throwing).
// This is meant to be used only in cases where we cannot easily propagate the
// uncertainty, such as when used in a switch statement (code may later be
// revisited to do things in a better way).
template < typename T >
inline
T make_certain(T t)
{
return t;
}
template < typename T >
inline
T make_certain(Uncertain<T> t)
{
return t.make_certain();
}
// opposite
template < typename T > // should be constrained only for enums.
inline
Uncertain<T> operator-(Uncertain<T> u)
{
return Uncertain<T>(-u.sup(), -u.inf());
}
// "sign" multiplication.
// Should be constrained only for "sign" enums, useless for bool.
template < typename T >
Uncertain<T> operator*(Uncertain<T> a, Uncertain<T> b)
{
if (a.inf() >= 0) // e>=0
{
// b>=0 [a.inf()*b.inf(); a.sup()*b.sup()]
// b<=0 [a.sup()*b.inf(); a.inf()*b.sup()]
// b~=0 [a.sup()*b.inf(); a.sup()*b.sup()]
T aa = a.inf(), bb = a.sup();
if (b.inf() < 0)
{
aa = bb;
if (b.sup() < 0)
bb = a.inf();
}
return Uncertain<T>(aa * b.inf(), bb * b.sup());
}
else if (a.sup()<=0) // e<=0
{
// b>=0 [a.inf()*b.sup(); a.sup()*b.inf()]
// b<=0 [a.sup()*b.sup(); a.inf()*b.inf()]
// b~=0 [a.inf()*b.sup(); a.inf()*b.inf()]
T aa = a.sup(), bb = a.inf();
if (b.inf() < 0)
{
aa=bb;
if (b.sup() < 0)
bb=a.sup();
}
return Uncertain<T>(bb * b.sup(), aa * b.inf());
}
else // 0 \in [inf();sup()]
{
if (b.inf()>=0) // d>=0
return Uncertain<T>(a.inf() * b.sup(), a.sup() * b.sup());
if (b.sup()<=0) // d<=0
return Uncertain<T>(a.sup() * b.inf(), a.inf() * b.inf());
// 0 \in d
T tmp1 = a.inf() * b.sup();
T tmp2 = a.sup() * b.inf();
T tmp3 = a.inf() * b.inf();
T tmp4 = a.sup() * b.sup();
return Uncertain<T>((std::min)(tmp1, tmp2), (std::max)(tmp3, tmp4));
}
}
template < typename T >
inline
Uncertain<T> operator*(T a, Uncertain<T> b)
{
return Uncertain<T>(a) * b;
}
template < typename T >
inline
Uncertain<T> operator*(Uncertain<T> a, T b)
{
return a * Uncertain<T>(b);
}
// enum_cast overload
#ifdef CGAL_CFG_MATCHING_BUG_5
template < typename T, typename U >
inline
Uncertain<T> enum_cast_bug(Uncertain<U> u, const T*)
{
return Uncertain<T>(static_cast<const T>(u.inf()),
static_cast<const T>(u.sup()));
}
#else
template < typename T, typename U >
inline
Uncertain<T> enum_cast(Uncertain<U> u)
{
return Uncertain<T>(static_cast<T>(u.inf()), static_cast<T>(u.sup()));
}
#endif
} //namespace CGAL
#endif // CGAL_UNCERTAIN_H
|