source: src/FunctionApproximation/unittests/ExtractorsUnitTest.hpp@ 775f3f

Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Exclude_Hydrogens_annealWithBondGraph ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters StoppableMakroAction TremoloParser_IncreasedPrecision
Last change on this file since 775f3f was 2124aa, checked in by Frederik Heber <heber@…>, 8 years ago

Extractors::reorderArgumentsByParticleTypes() rewritten to scan for all induced, connected subgraphs.

  • after filtering the arguments down to the required particle types, we use the adjacency graph that is passed down from creating the SaturatedFragments, stored in various FragmentationResultContainers and finally used to state whether in Extractors::gatherAllSymmetricDistances() a distance represents a bond or not. In this graph we look for all subgraphs that are homologous to the graph specified by the derived EmpiricalPotential. For each accepted subgraph we then gather again all symmetric distances and concatenate them all.
  • TESTFIX: Marked all potential fitting regression tests as XFAIL for the moment. On the one hand the homology container format changed (edges), and on the other hand we are in the middle of refactoring above function.
  • added test using edges for ExtractorsUnitTest.
  • lib dependency fixed for ..PotentialUnitTest.
  • NOTE: boost::graph is incompatible with CodePattern's MEMDEBUG. Hence, includes are placed prior to memdebug's.
  • Property mode set to 100644
File size: 829 bytes
Line 
1/*
2 * ExtractorsUnitTest.hpp
3 *
4 * Created on: Oct 16, 2012
5 * Author: heber
6 */
7
8#ifndef FUNCTIONARGUMENTUNITTEST_HPP_
9#define FUNCTIONARGUMENTUNITTEST_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16
17#include <cppunit/extensions/HelperMacros.h>
18
19/********************************************** Test classes **************************************/
20
21class ExtractorsTest : public CppUnit::TestFixture
22{
23 CPPUNIT_TEST_SUITE( ExtractorsTest) ;
24 CPPUNIT_TEST ( gatherAllSymmetricDistancesTest );
25 CPPUNIT_TEST ( gatherAllSymmetricDistances_edgesTest );
26 CPPUNIT_TEST_SUITE_END();
27
28public:
29 void setUp();
30 void tearDown();
31 void gatherAllSymmetricDistancesTest();
32 void gatherAllSymmetricDistances_edgesTest();
33
34private:
35};
36
37#endif /* FUNCTIONARGUMENTUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.