Skip to content

Commit 92b98f0

Browse files
committed
including Tikhonov SVD and Tikhonov implementing abstract class structure. Currently having compilation problems, the system seems to believe that the child classes are abstract
1 parent 4fa46a7 commit 92b98f0

22 files changed

+2420
-1007
lines changed

src/Core/Algorithms/Legacy/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@ ADD_SUBDIRECTORY(Fields)
3030
ADD_SUBDIRECTORY(DataIO)
3131
ADD_SUBDIRECTORY(Converter)
3232
ADD_SUBDIRECTORY(Forward)
33+
ADD_SUBDIRECTORY(Inverse)
3334
ADD_SUBDIRECTORY(Geometry)
3435
ADD_SUBDIRECTORY(FiniteElements)
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
#
2+
# For more information, please see: http://software.sci.utah.edu
3+
#
4+
# The MIT License
5+
#
6+
# Copyright (c) 2015 Scientific Computing and Imaging Institute,
7+
# University of Utah.
8+
#
9+
#
10+
# Permission is hereby granted, free of charge, to any person obtaining a
11+
# copy of this software and associated documentation files (the "Software"),
12+
# to deal in the Software without restriction, including without limitation
13+
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
14+
# and/or sell copies of the Software, and to permit persons to whom the
15+
# Software is furnished to do so, subject to the following conditions:
16+
#
17+
# The above copyright notice and this permission notice shall be included
18+
# in all copies or substantial portions of the Software.
19+
#
20+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21+
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23+
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25+
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26+
# DEALINGS IN THE SOFTWARE.
27+
#
28+
29+
SET(Algorithms_Legacy_Inverse_SRCS
30+
TikhonovImplAbstractBase.cc
31+
SolveInverseProblemWithTikhonovImpl_child.cc
32+
SolveInverseProblemWithTikhonovSVD_impl.cc
33+
)
34+
35+
SET(Algorithms_Legacy_Inverse_HEADERS
36+
TikhonovImplAbstractBase.h
37+
SolveInverseProblemWithTikhonovImpl_child.h
38+
SolveInverseProblemWithTikhonovSVD_impl.h
39+
share.h
40+
)
41+
42+
SCIRUN_ADD_LIBRARY(Algorithms_Legacy_Inverse
43+
${Algorithms_Legacy_Inverse_HEADERS}
44+
${Algorithms_Legacy_Inverse_SRCS}
45+
)
46+
47+
TARGET_LINK_LIBRARIES(Algorithms_Legacy_Inverse
48+
Core_Datatypes #matrices
49+
Core_Datatypes_Legacy_Field
50+
Core_Geometry_Primitives #vectors
51+
Core_Basis #field basis
52+
Core_Algorithms_Legacy_Fields
53+
Algorithms_Base
54+
${SCI_BOOST_LIBRARY}
55+
)
56+
57+
IF(BUILD_SHARED_LIBS)
58+
ADD_DEFINITIONS(-DBUILD_Algorithms_Legacy_Inverse)
59+
ENDIF(BUILD_SHARED_LIBS)
60+
61+
#SCIRUN_ADD_TEST_DIR(Tests)

0 commit comments

Comments
 (0)