Skip to content
Snippets Groups Projects
Commit c1f45f8b authored by Carl Philipp Klemm's avatar Carl Philipp Klemm
Browse files

also move componant headers into a componant subdirectory

parent 26593e1e
Branches
No related tags found
No related merge requests found
Showing
with 34 additions and 46 deletions
...@@ -14,6 +14,7 @@ set(SRC_FILES ...@@ -14,6 +14,7 @@ set(SRC_FILES
componant/constantphase.cpp componant/constantphase.cpp
componant/warburg.cpp componant/warburg.cpp
componant/paralellseriel.cpp componant/paralellseriel.cpp
componant/finitetr.cpp
model.cpp model.cpp
log.cpp log.cpp
normalize.cpp normalize.cpp
...@@ -21,7 +22,6 @@ set(SRC_FILES ...@@ -21,7 +22,6 @@ set(SRC_FILES
log.cpp log.cpp
normalize.cpp normalize.cpp
basicmath.cpp basicmath.cpp
finitetr.cpp
eistype.cpp eistype.cpp
strops.cpp strops.cpp
translators.cpp translators.cpp
...@@ -32,18 +32,19 @@ set(SRC_FILES ...@@ -32,18 +32,19 @@ set(SRC_FILES
set(API_HEADERS_CPP_DIR eisgenerator/) set(API_HEADERS_CPP_DIR eisgenerator/)
set(API_HEADERS_CPP set(API_HEADERS_CPP
${API_HEADERS_CPP_DIR}/componant.h ${API_HEADERS_CPP_DIR}/componant/componant.h
${API_HEADERS_CPP_DIR}/cap.h ${API_HEADERS_CPP_DIR}/componant/cap.h
${API_HEADERS_CPP_DIR}/resistor.h ${API_HEADERS_CPP_DIR}/componant/resistor.h
${API_HEADERS_CPP_DIR}/constantphase.h ${API_HEADERS_CPP_DIR}/componant/constantphase.h
${API_HEADERS_CPP_DIR}/warburg.h ${API_HEADERS_CPP_DIR}/componant/warburg.h
${API_HEADERS_CPP_DIR}/componant/inductor.h
${API_HEADERS_CPP_DIR}/componant/finitetr.h
${API_HEADERS_CPP_DIR}/componant/paralellseriel.h
${API_HEADERS_CPP_DIR}/model.h ${API_HEADERS_CPP_DIR}/model.h
${API_HEADERS_CPP_DIR}/log.h ${API_HEADERS_CPP_DIR}/log.h
${API_HEADERS_CPP_DIR}/paralellseriel.h
${API_HEADERS_CPP_DIR}/basicmath.h ${API_HEADERS_CPP_DIR}/basicmath.h
${API_HEADERS_CPP_DIR}/eistype.h ${API_HEADERS_CPP_DIR}/eistype.h
${API_HEADERS_CPP_DIR}/normalize.h ${API_HEADERS_CPP_DIR}/normalize.h
${API_HEADERS_CPP_DIR}/inductor.h
${API_HEADERS_CPP_DIR}/translators.h ${API_HEADERS_CPP_DIR}/translators.h
) )
...@@ -82,6 +83,7 @@ endif(WIN32) ...@@ -82,6 +83,7 @@ endif(WIN32)
set(COMMON_COMPILE_FLAGS "-Wall -O2 -march=native -g") set(COMMON_COMPILE_FLAGS "-Wall -O2 -march=native -g")
if(PROFILE_ENABLED) if(PROFILE_ENABLED)
message("Profileing enabled")
set(COMMON_COMPILE_FLAGS "${COMMON_COMPILE_FLAGS} -pg -fno-omit-frame-pointer") set(COMMON_COMPILE_FLAGS "${COMMON_COMPILE_FLAGS} -pg -fno-omit-frame-pointer")
set(COMMON_LINK_FLAGS "${COMMON_LINK_FLAGS} -pg -fno-omit-frame-pointer") set(COMMON_LINK_FLAGS "${COMMON_LINK_FLAGS} -pg -fno-omit-frame-pointer")
endif(PROFILE_ENABLED) endif(PROFILE_ENABLED)
......
#include "cap.h" #include "componant/cap.h"
#include "strops.h"
#include <cstdlib> #include <cstdlib>
#include <math.h> #include <math.h>
#include <cassert> #include <cassert>
......
#include "componant.h" #include "componant/componant.h"
#include <assert.h> #include <assert.h>
#include <sstream> #include <sstream>
#include "paralellseriel.h" #include "componant/paralellseriel.h"
#include "resistor.h" #include "componant/resistor.h"
#include "cap.h" #include "componant/cap.h"
#include "constantphase.h" #include "componant/constantphase.h"
#include "warburg.h" #include "componant/warburg.h"
#include "log.h" #include "log.h"
#include "inductor.h" #include "componant/inductor.h"
#include "finitetr.h" #include "componant/finitetr.h"
#include "randomgen.h" #include "randomgen.h"
using namespace eis; using namespace eis;
......
#include "constantphase.h" #include "componant/constantphase.h"
#include "strops.h"
#include <cstdlib> #include <cstdlib>
#include <string> #include <string>
#define _USE_MATH_DEFINES #define _USE_MATH_DEFINES
......
#include "finitetr.h" #include "componant/finitetr.h"
#include <cstdlib> #include <cstdlib>
#include <math.h> #include <math.h>
#include "eisgenerator/componant.h" #include "componant/componant.h"
#include "eisgenerator/paralellseriel.h" #include "componant/paralellseriel.h"
#include "eisgenerator/resistor.h" #include "componant/resistor.h"
#include "paralellseriel.h" #include "componant/cap.h"
#include "cap.h"
#include "resistor.h"
#include "log.h" #include "log.h"
#include "strops.h" #include "strops.h"
......
#include "inductor.h" #include "componant/inductor.h"
#include "strops.h"
#include <cstdlib> #include <cstdlib>
#include <math.h> #include <math.h>
#include <cassert> #include <cassert>
......
#include "paralellseriel.h" #include "componant/paralellseriel.h"
#include "componant.h" #include "componant/componant.h"
using namespace eis; using namespace eis;
......
#include "resistor.h" #include "componant/resistor.h"
#include "strops.h"
#include <vector> #include <vector>
#include <math.h> #include <math.h>
#include <cassert> #include <cassert>
......
#include "warburg.h" #include "componant/warburg.h"
#include "strops.h"
#include <cstdlib> #include <cstdlib>
#include <cmath> #include <cmath>
#include <cassert> #include <cassert>
......
File moved
File moved
File moved
File moved
File moved
File moved
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#include <functional> #include <functional>
#include "eistype.h" #include "eistype.h"
#include "componant.h" #include "componant/componant.h"
namespace eis namespace eis
{ {
......
...@@ -13,20 +13,13 @@ ...@@ -13,20 +13,13 @@
#include <dlfcn.h> #include <dlfcn.h>
#include <functional> #include <functional>
#include "componant.h" #include "componant/componant.h"
#include "eistype.h" #include "eistype.h"
#include "strops.h" #include "strops.h"
#include "cap.h" #include "componant/paralellseriel.h"
#include "resistor.h"
#include "inductor.h"
#include "constantphase.h"
#include "finitetr.h"
#include "warburg.h"
#include "paralellseriel.h"
#include "log.h" #include "log.h"
#include "normalize.h" #include "normalize.h"
#include "basicmath.h" #include "basicmath.h"
#include "randomgen.h"
#include "compile.h" #include "compile.h"
#include "compcache.h" #include "compcache.h"
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
#include "strops.h" #include "strops.h"
#include "eistype.h" #include "eistype.h"
#include "log.h" #include "log.h"
#include "componant.h" #include "componant/componant.h"
namespace eis namespace eis
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment