Changeset d5fea7


Ignore:
Timestamp:
Apr 16, 2010, 1:52:20 PM (15 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
061b06
Parents:
474961
Message:

FIX: If multiple open lines can be chosen in AddTesselationLine(), then pick the one for which candidate matches first.

Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/tesselation.cpp

    r474961 rd5fea7  
    18271827 * If successful it raises the line count and inserts the new line into the BLS,
    18281828 * if unsuccessful, it writes the line which had been present into the BLS, deleting the new constructed one.
     1829 * @param *candidate third point of the triangle to be, for checking between multiple open line candidates
    18291830 * @param *a first endpoint
    18301831 * @param *b second endpoint
    18311832 * @param n index of Tesselation::BLS giving the line with both endpoints
    18321833 */
    1833 void Tesselation::AddTesselationLine(class BoundaryPointSet *a, class BoundaryPointSet *b, const int n) {
     1834void Tesselation::AddTesselationLine(const BoundaryPointSet * const candidate, class BoundaryPointSet *a, class BoundaryPointSet *b, const int n) {
    18341835  bool insertNewLine = true;
    18351836
    18361837  LineMap::iterator FindLine = a->lines.find(b->node->nr);
     1838  BoundaryLineSet *WinningLine = NULL;
    18371839  if (FindLine != a->lines.end()) {
    18381840    Log() << Verbose(1) << "INFO: There is at least one line between " << *a << " and " << *b << ": " << *(FindLine->second) << "." << endl;
     
    18421844
    18431845    for (FindLine = FindPair.first; FindLine != FindPair.second; FindLine++) {
     1846      Log() << Verbose(1) << "INFO: Checking line " << *(FindLine->second) << " ..." << endl;
    18441847      // If there is a line with less than two attached triangles, we don't need a new line.
    1845       if (FindLine->second->triangles.size() < 2) {
     1848      if (FindLine->second->triangles.size() == 1) {
     1849        // get open line
     1850        CandidateMap::iterator Finder = OpenLines.find(FindLine->second);
    18461851        insertNewLine = false;
    1847         AddExistingTesselationTriangleLine(FindLine->second, n);
    1848         break;
     1852        WinningLine = FindLine->second;
     1853        if ((!Finder->second->pointlist.empty()) && (*(Finder->second->pointlist.begin()) == candidate->node)) { // stop searching if candidate matches
     1854          break;
     1855        }
    18491856      }
    18501857    }
     
    18531860  if (insertNewLine) {
    18541861    AddNewTesselationTriangleLine(a, b, n);
     1862  } else {
     1863    AddExistingTesselationTriangleLine(WinningLine, n);
    18551864  }
    18561865}
     
    26902699  for (int i=0;i<3;i++) {
    26912700    BLS[i] = NULL;
    2692     // go through all possible lines (also degenerate ones)
     2701    // go through all possible lines (also degenerate ones) and find ones to be used
    26932702    pair<LineMap::iterator,LineMap::iterator> FindPair = triangle->lines[i]->endpoints[0]->lines.equal_range(triangle->lines[i]->endpoints[1]->Nr);
    26942703    for (LineMap::iterator FindLine = FindPair.first; FindLine != FindPair.second; FindLine++) {
    26952704      if ((*FindLine).second->triangles.size() == 1) {
     2705        Log() << Verbose(1) << "Found line " << *(*FindLine).second << " from triangle " << *((*FindLine).second->triangles.begin()->second) << "." << endl;
    26962706        // check whether best Candidate for this line from the degenerate triangle is the third endpoint
    26972707        CandidateForTesselation CandidateLine((*FindLine).second);
     
    27172727    BTS = NULL;
    27182728  } else {
     2729    // created new lines for the other egdes of the other side triangle
    27192730    for (int i=0;i<3;i++) {
    27202731      if (BLS[i] == NULL) {
     
    27222733      }
    27232734    }
    2724     /// 3. Create the triangle with opposite NormalVector and other center
     2735    /// 3. Create the triangle
    27252736    BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount);
    27262737    AddTesselationTriangle();
     2738
     2739    // add triangle to the CandidateForTesselation of its open lines
     2740    CandidateMap::iterator Finder = OpenLines.end();
     2741    for (int i=0;i<3;i++) {
     2742      Finder = OpenLines.find(BTS->lines[i]);
     2743      if (Finder != OpenLines.end()) {
     2744        Log() << Verbose(1) << "INFO: Found open line of this triangle " << *(Finder->first) << endl;
     2745        if (Finder->second->T == NULL) {
     2746          Finder->second->T = BTS;
     2747          Log() << Verbose(1) << "ACCEPT: Setting source triangle of open line " << *(Finder->first) << " to the newly created one." << endl;
     2748        }
     2749      } else
     2750        Log() << Verbose(1) << "REJECT: line " << *BTS->lines[i] << " of this triangle is not found to be open." << endl;
     2751    }
    27272752  }
    27282753};
     
    27422767
    27432768  // add the lines
    2744   AddTesselationLine(TPS[0], TPS[1], 0);
    2745   AddTesselationLine(TPS[0], TPS[2], 1);
    2746   AddTesselationLine(TPS[1], TPS[2], 2);
     2769  AddTesselationLine(TPS[2], TPS[0], TPS[1], 0);
     2770  AddTesselationLine(TPS[1], TPS[0], TPS[2], 1);
     2771  AddTesselationLine(TPS[0], TPS[1], TPS[2], 2);
    27472772
    27482773  // add the triangles
     
    43244349        AddTesselationPoint(*EndNode, 2);
    43254350        Log() << Verbose(3) << "Adding new triangle lines."<< endl;
    4326         AddTesselationLine(TPS[0], TPS[1], 0);
    4327         AddTesselationLine(TPS[0], TPS[2], 1);
     4351        AddTesselationLine(NULL, TPS[0], TPS[1], 0);
     4352        AddTesselationLine(NULL, TPS[0], TPS[2], 1);
    43284353        NewLines.push_back(BLS[1]);
    4329         AddTesselationLine(TPS[1], TPS[2], 2);
     4354        AddTesselationLine(NULL, TPS[1], TPS[2], 2);
    43304355        BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount);
    43314356        BTS->GetNormalVector(NormalVector);
     
    47764801  AddTesselationPoint(point, 2);
    47774802  Log() << Verbose(2) << "Adding new triangle lines."<< endl;
    4778   AddTesselationLine(TPS[0], TPS[1], 0);
    4779   AddTesselationLine(TPS[0], TPS[2], 1);
    4780   AddTesselationLine(TPS[1], TPS[2], 2);
     4803  AddTesselationLine(NULL, TPS[0], TPS[1], 0);
     4804  AddTesselationLine(NULL, TPS[0], TPS[2], 1);
     4805  AddTesselationLine(NULL, TPS[1], TPS[2], 2);
    47814806  BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount);
    47824807  BTS->GetNormalVector(TempTriangle->NormalVector);
     
    47914816  AddTesselationPoint(point, 2);
    47924817  Log() << Verbose(2) << "Adding new triangle lines."<< endl;
    4793   AddTesselationLine(TPS[0], TPS[1], 0);
    4794   AddTesselationLine(TPS[0], TPS[2], 1);
    4795   AddTesselationLine(TPS[1], TPS[2], 2);
     4818  AddTesselationLine(NULL, TPS[0], TPS[1], 0);
     4819  AddTesselationLine(NULL, TPS[0], TPS[2], 1);
     4820  AddTesselationLine(NULL, TPS[1], TPS[2], 2);
    47964821  BTS = new class BoundaryTriangleSet(BLS, TrianglesOnBoundaryCount);
    47974822  BTS->GetNormalVector(TempTriangle->NormalVector);
     
    50265051      for (int i = 0; i < 3; i++)
    50275052        AddTesselationPoint((*TriangleWalker)->endpoints[i]->node, i);
    5028       AddTesselationLine(TPS[0], TPS[1], 0);
    5029       AddTesselationLine(TPS[0], TPS[2], 1);
    5030       AddTesselationLine(TPS[1], TPS[2], 2);
     5053      AddTesselationLine(NULL, TPS[0], TPS[1], 0);
     5054      AddTesselationLine(NULL, TPS[0], TPS[2], 1);
     5055      AddTesselationLine(NULL, TPS[1], TPS[2], 2);
    50315056      if (TriangleNrs.empty())
    50325057        DoeLog(0) && (eLog()<< Verbose(0) << "No more free triangle numbers!" << endl);
  • src/tesselation.hpp

    r474961 rd5fea7  
    283283    void AddTesselationPoint(TesselPoint* Candidate, const int n);
    284284    void SetTesselationPoint(TesselPoint* Candidate, const int n) const;
    285     void AddTesselationLine(class BoundaryPointSet *a, class BoundaryPointSet *b, const int n);
     285    void AddTesselationLine(const BoundaryPointSet * const candidate, class BoundaryPointSet *a, class BoundaryPointSet *b, const int n);
    286286    void AddNewTesselationTriangleLine(class BoundaryPointSet *a, class BoundaryPointSet *b, const int n);
    287287    void AddExistingTesselationTriangleLine(class BoundaryLineSet *FindLine, int n);
Note: See TracChangeset for help on using the changeset viewer.