Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
alta
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alta
alta
Commits
29d2c03b
Commit
29d2c03b
authored
Jun 24, 2014
by
Laurent Belcour
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updating configuration file for CERES.
Correction of some DEBUG message.
parent
c59aae5b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
configs/qt/ceres.prf
configs/qt/ceres.prf
+5
-0
sources/core/plugins_manager.cpp
sources/core/plugins_manager.cpp
+1
-1
sources/softs/data2data/main.cpp
sources/softs/data2data/main.cpp
+8
-0
No files found.
configs/qt/ceres.prf
View file @
29d2c03b
...
...
@@ -8,3 +8,8 @@ CONFIG += ceres
INCLUDEPATH += $$(ALTA)/external/build/include
LIBS += -L$$(ALTA)/external/build/lib \
-lceres -lglog
macx {
LIBS += -lamd -lcamd -lcolamd -lcholmod -lcxsparse
LIBS *= -lblas -llapack
}
sources/core/plugins_manager.cpp
View file @
29d2c03b
...
...
@@ -275,7 +275,7 @@ ptr<data> plugins_manager::get_data(const std::string& n)
{
if
(
n
.
empty
())
{
#if
n
def DEBUG
#ifdef DEBUG
std
::
cout
<<
"<<DEBUG>> no data plugin specified, returning a vertial_segment loader"
<<
std
::
endl
;
#endif
return
new
vertical_segment
();
...
...
sources/softs/data2data/main.cpp
View file @
29d2c03b
...
...
@@ -101,8 +101,16 @@ int main(int argc, char** argv)
// Import data
ptr
<
data
>
d_in
=
plugins_manager
::
get_data
(
args
[
"in-data"
])
;
d_in
->
load
(
args
[
"input"
],
args
);
if
(
!
d_in
)
{
std
::
cout
<<
"<<INFO>> input data will be treated as ALTA format"
<<
std
::
endl
;
}
ptr
<
data
>
d_out
=
plugins_manager
::
get_data
(
args
[
"out-data"
])
;
if
(
!
d_out
)
{
std
::
cout
<<
"<<INFO>> data will be outputed to ALTA format"
<<
std
::
endl
;
}
if
(
!
d_in
&&
!
d_out
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment