source: src/FunctionApproximation/unittests/ExtractorsUnitTest.hpp@ a844d8

Candidate_v1.6.1
Last change on this file since a844d8 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.