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
|
#include "config.h"
#include "config_mesh_3.h"
#include "C3t3_type.h"
#include "Scene_c3t3_item.h"
#include "Scene_surface_mesh_item.h"
#ifdef CGAL_MESH_3_DEMO_ACTIVATE_SEGMENTED_IMAGES
#include "Scene_image_item.h"
#endif
#ifdef CGAL_MESH_3_DEMO_ACTIVATE_IMPLICIT_FUNCTIONS
#include "Scene_implicit_function_item.h"
#include "implicit_functions/Implicit_function_interface.h"
#endif
#include "Optimizer_thread.h"
#include <CGAL/optimize_mesh_3.h>
#include <CGAL/Bbox_3.h>
#include <fstream>
#include <cstddef>
namespace cgp = CGAL::parameters;
// -----------------------------------
// Helper function
// -----------------------------------
QString translate_bool(const bool b)
{
return b ? QString("done")
: QString("in progress");
}
// -----------------------------------
// Optimization_function_base template class
// -----------------------------------
template <typename Domain>
class Optimization_function_base
: public Optimization_function_interface
{
public:
/// Constructor
/// Takes the responsibility of d
explicit
Optimization_function_base(C3t3& c3t3, Domain* d)
: c3t3_(c3t3), domain_(d) {}
/// Destructor
virtual ~Optimization_function_base()
{
delete domain_;
}
/// Launch
virtual CGAL::Mesh_optimization_return_code launch()
{
return (*this)(c3t3_, *domain_);
}
protected:
/// Virtual operator() which should be overloaded
virtual CGAL::Mesh_optimization_return_code
operator()(C3t3& c3t3, const Domain& domain) = 0;
private:
C3t3& c3t3_;
Domain* domain_;
};
// Prototype which will be partially specialized for each Parameter class
template < typename Domain, typename Parameters >
class Optimization_function {};
// -----------------------------------
// Optimization generic function (responsible of dynamic casting)
// -----------------------------------
template <typename Parameters>
Optimizer_thread* cgal_code_optimization(Scene_c3t3_item& c3t3_item,
const Parameters& param,
const bool create_new_item)
{
// Create result item
Scene_c3t3_item* p_result_item = create_new_item ?
new Scene_c3t3_item(c3t3_item.c3t3()) : &c3t3_item;
if ( NULL == p_result_item )
{
return NULL;
}
// Create domain using real type of c3t3_item.data_item()
// ------------------
#ifdef CGAL_MESH_3_DEMO_ACTIVATE_SEGMENTED_IMAGES
// Image
const Scene_image_item* image_item =
qobject_cast<const Scene_image_item*>(c3t3_item.data_item());
if ( NULL != image_item )
{
// Build domain
const Image* p_image = image_item->image();
if ( NULL == p_image )
{
return NULL;
}
Image_mesh_domain* p_domain =
new Image_mesh_domain(Image_mesh_domain::create_labeled_image_mesh_domain
(CGAL::parameters::image = *p_image,
CGAL::parameters::relative_error_bound = 1e-6,
CGAL::parameters::construct_surface_patch_index =
[](int i, int j) { return (i * 1000 + j); } ));
// Create thread
typedef Optimization_function<Image_mesh_domain,Parameters> Opt_function;
Opt_function* p_opt_function = new Opt_function(p_result_item->c3t3(), p_domain, param);
return new Optimizer_thread(p_opt_function, p_result_item);
}
#endif
// Surface mesh
const Scene_surface_mesh_item* sm_item =
qobject_cast<const Scene_surface_mesh_item*>(c3t3_item.data_item());
if ( NULL != sm_item )
{
const_cast<Scene_surface_mesh_item*>(sm_item)->setItemIsMulticolor(true);
const_cast<Scene_surface_mesh_item*>(sm_item)->computeItemColorVectorAutomatically(true);
// Build domain
const SMesh* smesh = sm_item->face_graph();
if ( NULL == smesh )
{
return NULL;
}
Polyhedral_mesh_domain* sm_domain = new Polyhedral_mesh_domain(*smesh);
if(c3t3_item.get_sharp_edges_angle() != -1 )
sm_domain->detect_features(c3t3_item.get_sharp_edges_angle());
else if(c3t3_item.get_detect_borders())
sm_domain->detect_borders();
// Create thread
typedef Optimization_function<Polyhedral_mesh_domain,Parameters> Opt_function;
Opt_function* p_opt_function = new Opt_function(p_result_item->c3t3(), sm_domain, param);
return new Optimizer_thread(p_opt_function, p_result_item);
}
#ifdef CGAL_MESH_3_DEMO_ACTIVATE_IMPLICIT_FUNCTIONS
// Function
const Scene_implicit_function_item* function_item =
qobject_cast<const Scene_implicit_function_item*>(c3t3_item.data_item());
if ( NULL != function_item )
{
// Build domain
const Implicit_function_interface* p_function = function_item->function();
if ( NULL == p_function ) { return NULL; }
CGAL::Bbox_3 dom_bbox (p_function->bbox().xmin(),
p_function->bbox().ymin(),
p_function->bbox().zmin(),
p_function->bbox().xmax(),
p_function->bbox().ymax(),
p_function->bbox().zmax());
Function_mesh_domain* p_domain =
new Function_mesh_domain(CGAL::parameters::function = Function_wrapper(*p_function), CGAL::parameters::bounding_object = dom_bbox, CGAL::parameters::relative_error_bound = 1e-7,
CGAL::parameters::construct_surface_patch_index =
[](int i, int j) { return (i * 1000 + j); } );
// Create thread
typedef Optimization_function<Function_mesh_domain,Parameters> Opt_function;
Opt_function* p_opt_function = new Opt_function(p_result_item->c3t3(), p_domain, param);
return new Optimizer_thread(p_opt_function, p_result_item);
}
#endif
return NULL;
}
// -----------------------------------
// Global optimization
// -----------------------------------
struct Global_optimization_status
{
bool compute_moves_done;
bool move_points_done;
bool rebuild_restricted_delaunay_done;
int iteration_done;
Global_optimization_status()
: compute_moves_done(false)
, move_points_done(false)
, rebuild_restricted_delaunay_done(false)
, iteration_done(-1) {}
};
struct Global_visitor
{
Global_visitor(Global_optimization_status* status) : p_status_(status) {}
Global_visitor(const Global_visitor& rhs) : p_status_(rhs.p_status_) {}
void after_compute_moves() { p_status_->compute_moves_done = true; }
void after_move_points() { p_status_->move_points_done = true; }
void after_rebuild_restricted_delaunay() { p_status_->rebuild_restricted_delaunay_done = true; }
void end_of_iteration(int iteration_number)
{
p_status_->iteration_done = iteration_number;
p_status_->compute_moves_done = false;
p_status_->move_points_done = false;
p_status_->rebuild_restricted_delaunay_done = false;
}
private:
Global_optimization_status* p_status_;
};
template <typename Domain>
class Global_optimization_function
: public Optimization_function_base< Domain >
{
typedef Global_visitor Visitor;
typedef Optimization_function_base< Domain > Base;
public:
/// Constructor
Global_optimization_function(C3t3& c3t3, Domain* d)
: Base(c3t3,d)
, status_() {}
/// Destructor
virtual ~Global_optimization_function() {}
// Logs
virtual QString status(double) const
{
QString res = QString("Iteration %1<br /><br />"
"Compute moves: %2<br />")
.arg(status_.iteration_done + 2)
.arg(translate_bool(status_.compute_moves_done));
if ( status_.compute_moves_done )
{
res += QString("Move points: %1<br />")
.arg(translate_bool(status_.move_points_done));
}
if ( status_.move_points_done )
{
res += QString("Rebuild restricted Delaunay: %1")
.arg(translate_bool(status_.rebuild_restricted_delaunay_done));
}
return res;
}
protected:
Global_optimization_status status_;
};
// -----------------------------------
// Odt
// -----------------------------------
#ifndef CGAL_MESH_3_DEMO_DISABLE_ODT
struct Odt_parameters
{
double time_limit;
double convergence_ratio;
double freeze_ratio;
bool do_freeze;
int max_iteration_nb;
QStringList log() const
{
return QStringList()
<< QString("time limit: %1").arg(time_limit)
<< QString("convergence ratio: %1").arg(convergence_ratio)
<< QString("freeze ratio: %1").arg(freeze_ratio)
<< QString("do freeze: %1").arg(do_freeze)
<< QString("maximum iterations: %1").arg(max_iteration_nb);
}
};
/**
* @class Odt_function
* Partial specialization of class Optimization_function for Odt
* Runs odt global optimization
*/
template <typename Domain>
class Optimization_function < Domain, Odt_parameters >
: public Global_optimization_function< Domain >
{
// Private types
typedef C3t3::Triangulation Tr;
typedef CGAL::Mesh_3::Mesh_sizing_field<Tr> Sizing;
typedef CGAL::Mesh_3::Odt_move<C3t3,Sizing> Move;
typedef Global_visitor Visitor;
typedef typename CGAL::Mesh_3::Mesh_global_optimizer<C3t3,Domain,Move,Visitor> Odt_optimizer;
typedef Global_optimization_function< Domain > Base;
public:
/// Constructor
Optimization_function(C3t3& c3t3, Domain* d, const Odt_parameters& p)
: Base(c3t3,d)
, odt_(NULL)
, p_(p) {}
/// Destructor
virtual ~Optimization_function() { delete odt_; }
/// Stops process (set time limit to 1ms)
virtual void stop() { odt_->set_time_limit(0.001); }
/// Log strings
virtual QString name() const { return QString("Odt"); }
virtual QStringList parameters_log() const { return p_.log(); }
protected:
/// Launch odt optimization
/// The content of this method is taken from CGAL::odt_optimize_mesh_3()
virtual CGAL::Mesh_optimization_return_code
operator()(C3t3& c3t3, const Domain& domain)
{
if ( NULL != odt_ ) { return CGAL::MESH_OPTIMIZATION_UNKNOWN_ERROR; }
// Create optimizer
odt_ = new Odt_optimizer(c3t3, domain, p_.freeze_ratio, p_.do_freeze, p_.convergence_ratio);
if ( NULL == odt_ ) { return CGAL::MESH_OPTIMIZATION_UNKNOWN_ERROR; }
// Set max time
odt_->set_time_limit(p_.time_limit);
// 1000 iteration max to avoid infinite loops
int max_iteration_nb = ( 0 == p_.max_iteration_nb ) ? 1000
: p_.max_iteration_nb;
// Launch optimization
return (*odt_)(max_iteration_nb, Visitor(&(this->status_)));
}
private:
Odt_optimizer* odt_;
Odt_parameters p_;
};
/**
* Global function cgal_code_odt_mesh_3
*/
Optimizer_thread*
cgal_code_odt_mesh_3(Scene_c3t3_item& c3t3_item,
const double time_limit,
const double convergence_ratio,
const double freeze_ratio,
const int max_iteration_number,
const bool create_new_item)
{
Odt_parameters p;
p.time_limit = time_limit;
p.convergence_ratio = convergence_ratio;
p.freeze_ratio = freeze_ratio;
p.max_iteration_nb = max_iteration_number;
return cgal_code_optimization(c3t3_item, p, create_new_item);
}
#endif
// -----------------------------------
// Lloyd
// -----------------------------------
#ifndef CGAL_MESH_3_DEMO_DISABLE_LLOYD
struct Lloyd_parameters
{
double time_limit;
double convergence_ratio;
double freeze_ratio;
bool do_freeze;
int max_iteration_nb;
QStringList log() const
{
return QStringList()
<< QString("time limit: %1").arg(time_limit)
<< QString("convergence ratio: %1").arg(convergence_ratio)
<< QString("freeze ratio: %1").arg(freeze_ratio)
<< QString("do freeze: %1").arg(do_freeze)
<< QString("maximum iterations: %1").arg(max_iteration_nb);
}
};
/**
* @class Lloyd_function
* Partial specialization of class Optimization_function for Lloyd
* Runs lloyd global optimization
*/
template <typename Domain>
class Optimization_function < Domain, Lloyd_parameters >
: public Global_optimization_function< Domain >
{
// Private types
typedef C3t3::Triangulation Tr;
typedef CGAL::Mesh_3::Mesh_sizing_field<Tr> Sizing;
typedef CGAL::Mesh_3::Lloyd_move<C3t3,Sizing> Move;
typedef Global_visitor Visitor;
typedef typename CGAL::Mesh_3::Mesh_global_optimizer<C3t3,Domain,Move,Visitor> Lloyd_optimizer;
typedef Global_optimization_function< Domain > Base;
public:
/// Constructor
Optimization_function(C3t3& c3t3, Domain* d, const Lloyd_parameters& p)
: Base(c3t3,d)
, lloyd_(NULL)
, p_(p) {}
/// Destructor
virtual ~Optimization_function() { delete lloyd_; }
/// Stops process (set time limit to 1ms)
virtual void stop() { lloyd_->set_time_limit(0.001); }
/// Log strings
virtual QString name() const { return QString("Lloyd"); }
virtual QStringList parameters_log() const { return p_.log(); }
protected:
/// Launch lloyd optimization
/// The content of this method is taken from CGAL::lloyd_optimize_mesh_3()
virtual CGAL::Mesh_optimization_return_code
operator()(C3t3& c3t3, const Domain& domain)
{
if ( NULL != lloyd_ ) { return CGAL::MESH_OPTIMIZATION_UNKNOWN_ERROR; }
// Create optimizer
lloyd_ = new Lloyd_optimizer(c3t3, domain, p_.freeze_ratio, p_.do_freeze, p_.convergence_ratio);
if ( NULL == lloyd_ ) { return CGAL::MESH_OPTIMIZATION_UNKNOWN_ERROR; }
// Set max time
lloyd_->set_time_limit(p_.time_limit);
// 1000 iteration max to avoid infinite loops
int max_iteration_nb = ( 0 == p_.max_iteration_nb ) ? 1000
: p_.max_iteration_nb;
// Launch optimization
return (*lloyd_)(max_iteration_nb, Visitor(&(this->status_)));
}
private:
Lloyd_optimizer* lloyd_;
Lloyd_parameters p_;
};
/**
* Global function cgal_code_lloyd_mesh_3
*/
Optimizer_thread*
cgal_code_lloyd_mesh_3(Scene_c3t3_item& c3t3_item,
const double time_limit,
const double convergence_ratio,
const double freeze_ratio,
const int max_iteration_number,
const bool create_new_item)
{
Lloyd_parameters p;
p.time_limit = time_limit;
p.convergence_ratio = convergence_ratio;
p.freeze_ratio = freeze_ratio;
p.max_iteration_nb = max_iteration_number;
return cgal_code_optimization(c3t3_item, p, create_new_item);
}
#endif
// -----------------------------------
// Perturbation
// -----------------------------------
#ifndef CGAL_MESH_3_DEMO_DISABLE_PERTURBER
struct Perturb_parameters
{
double time_limit;
double sliver_bound;
QStringList log() const
{
return QStringList()
<< QString("time limit: %1").arg(time_limit)
<< QString("sliver bound: %1").arg(sliver_bound);
}
};
struct Perturb_status
{
double bound_reached;
double vertices_left;
Perturb_status() : bound_reached(0), vertices_left(0) {}
};
struct Perturb_visitor
{
Perturb_visitor(Perturb_status* status) : p_status_(status) {}
Perturb_visitor(const Perturb_visitor& rhs) : p_status_(rhs.p_status_) {}
void bound_reached(const double bound) { p_status_->bound_reached = bound; }
void end_of_perturbation_iteration(std::size_t v) { p_status_->vertices_left = v;}
private:
Perturb_status* p_status_;
};
/**
* @class Perturb_function
* Partial specialization of class Optimization_function for perturbation
* Runs sliver perturbation
*/
template <typename Domain>
class Optimization_function < Domain, Perturb_parameters >
: public Optimization_function_base< Domain >
{
// Private types
typedef C3t3::Triangulation Tr;
typedef CGAL::Mesh_3::Min_dihedral_angle_criterion<Tr> Sc;
typedef Perturb_visitor Visitor;
typedef CGAL::Mesh_3::Sliver_perturber<C3t3,Domain,Sc,Visitor> Perturber;
typedef Optimization_function_base< Domain > Base;
public:
/// Constructor
Optimization_function(C3t3& c3t3, Domain* d, const Perturb_parameters& p)
: Base(c3t3,d)
, perturb_(NULL)
, p_(p)
, criterion_(p.sliver_bound, c3t3.triangulation()) {}
/// Destructor
~Optimization_function() { delete perturb_; }
/// Stops process (set time limit to 1ms)
virtual void stop() { perturb_->set_time_limit(0.001); }
/// Log strings
virtual QString name() const { return QString("Perturb"); }
virtual QStringList parameters_log() const { return p_.log(); }
virtual QString status(double) const
{
return QString("Dihedral angle reached: %1<br /><br />"
"Vertices left in queue (to reach next bound): %2")
.arg(status_.bound_reached)
.arg(status_.vertices_left);
}
protected:
/// Launch sliver perturbation
/// The content of this method is taken from CGAL::perturb_mesh_3()
virtual CGAL::Mesh_optimization_return_code
operator()(C3t3& c3t3, const Domain& domain)
{
if ( NULL != perturb_ ) { return CGAL::MESH_OPTIMIZATION_UNKNOWN_ERROR; }
typedef CGAL::Mesh_3::Sq_radius_perturbation<C3t3,Domain,Sc> Sq_radius;
typedef CGAL::Mesh_3::Volume_perturbation<C3t3,Domain,Sc> Volume;
typedef CGAL::Mesh_3::Dihedral_angle_perturbation<C3t3,Domain,Sc> Dihedral_angle;
typedef CGAL::Mesh_3::Li_random_perturbation<C3t3,Domain,Sc> Li_random;
// Build perturber
perturb_ = new Perturber(c3t3, domain, criterion_);
if ( NULL == perturb_ ) { return CGAL::MESH_OPTIMIZATION_UNKNOWN_ERROR; }
// Add perturbations
perturb_->add_perturbation(new Sq_radius(40,0.05));
perturb_->add_perturbation(new Volume(40,0.05));
perturb_->add_perturbation(new Dihedral_angle(40,0.05));
perturb_->add_perturbation(new Li_random(100,0.15));
// Set max time
perturb_->set_time_limit(p_.time_limit);
// Set sliver bound (0 means no sliver bound)
if ( 0 == p_.sliver_bound ) { p_.sliver_bound = criterion_.get_max_value(); }
// Launch perturber
return (*perturb_)(Visitor(&status_));
}
private:
Perturber* perturb_;
Perturb_parameters p_;
Perturb_status status_;
Sc criterion_;
};
/**
* Global function cgal_code_perturb_mesh_3
*/
Optimizer_thread*
cgal_code_perturb_mesh_3(Scene_c3t3_item& c3t3_item,
const double time_limit,
const double sliver_bound,
const bool create_new_item)
{
Perturb_parameters p;
p.sliver_bound = sliver_bound;
p.time_limit = time_limit;
return cgal_code_optimization(c3t3_item, p, create_new_item);
}
#endif
// -----------------------------------
// Exudation
// -----------------------------------
#ifndef CGAL_MESH_3_DEMO_DISABLE_EXUDER
struct Exude_parameters
{
double time_limit;
double sliver_bound;
QStringList log() const
{
return QStringList()
<< QString("time limit: %1").arg(time_limit)
<< QString("sliver bound: %1").arg(sliver_bound);
}
};
struct Exude_status
{
double cells_left_in_queue;
double vertices_pumped;
Exude_status() : cells_left_in_queue(0), vertices_pumped(0) {}
};
struct Exude_visitor
{
Exude_visitor(Exude_status* status) : p_status_(status) {}
Exude_visitor(const Exude_visitor& rhs) : p_status_(rhs.p_status_) {}
void after_cell_pumped(std::size_t n) { p_status_->cells_left_in_queue = n; }
private:
Exude_status* p_status_;
};
/**
* @class Exude_function
* Partial specialization of class Optimization_function for exudation
* Runs sliver exudation
*/
template <typename Domain>
class Optimization_function < Domain, Exude_parameters >
: public Optimization_function_base< Domain >
{
// Private types
typedef C3t3::Triangulation Tr;
typedef CGAL::Mesh_3::Min_dihedral_angle_criterion<Tr> Sc;
typedef Exude_visitor Visitor;
typedef CGAL::Mesh_3::Slivers_exuder<C3t3,Sc,Visitor> Exuder;
typedef Optimization_function_base< Domain > Base;
public:
// Constructor
Optimization_function(C3t3& c3t3, Domain* d, const Exude_parameters& p)
: Base(c3t3,d)
, exude_(NULL)
, p_(p)
, criterion_(p.sliver_bound, c3t3.triangulation()) {}
/// Destructor
~Optimization_function() { delete exude_; }
/// Stops process (set time limit to 1ms)
virtual void stop() { exude_->set_time_limit(0.001); }
// Log strings
virtual QString name() const { return QString("Exude"); }
virtual QStringList parameters_log() const { return p_.log(); }
virtual QString status(double) const
{
return QString("Cells left in queue: %1<br />")
//"Vertices pumped: %2")
.arg(status_.cells_left_in_queue);
//.arg(status_.vertices_pumped);
}
protected:
/// Launch sliver exudation
/// The content of this method is taken from CGAL::exude_mesh_3()
virtual CGAL::Mesh_optimization_return_code
operator()(C3t3& c3t3, const Domain&)
{
if ( NULL != exude_ ) { return CGAL::MESH_OPTIMIZATION_UNKNOWN_ERROR; }
// Create exuder
exude_ = new Exuder(c3t3, criterion_);
if ( NULL == exude_ ) { return CGAL::MESH_OPTIMIZATION_UNKNOWN_ERROR; }
// Set time_limit
exude_->set_time_limit(p_.time_limit);
// Launch exudation
return (*exude_)(Visitor(&status_));
}
private:
Exuder* exude_;
Exude_parameters p_;
Exude_status status_;
Sc criterion_;
};
/**
* Global function cgal_code_exude_mesh_3
*/
Optimizer_thread*
cgal_code_exude_mesh_3(Scene_c3t3_item& c3t3_item,
const double time_limit,
const double sliver_bound,
const bool create_new_item)
{
// Create result item
Scene_c3t3_item* p_result_item = create_new_item ?
new Scene_c3t3_item(c3t3_item.c3t3()) : &c3t3_item;
if ( NULL == p_result_item )
{
return NULL;
}
// Exudation
Exude_parameters p;
p.sliver_bound = sliver_bound;
p.time_limit = time_limit;
// Create thread
typedef Optimization_function<int,Exude_parameters> Opt_function;
Opt_function* p_opt_function = new Opt_function(p_result_item->c3t3(), NULL, p);
return new Optimizer_thread(p_opt_function, p_result_item);
}
#endif
|