Skip to content
Snippets Groups Projects
Commit 04fe1d6c authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Adding command for debugging

parent 9ce8cde3
No related branches found
No related tags found
No related merge requests found
...@@ -12,9 +12,15 @@ All notable changes to this project will be documented in this file. ...@@ -12,9 +12,15 @@ All notable changes to this project will be documented in this file.
5_molecular_dynamic use case of symmetric cell-list and verlet list with ghost put 5_molecular_dynamic use case of symmetric cell-list and verlet list with ghost put
6_complex_usage It show how the flexibility of openfpm can be used to debug your program 6_complex_usage It show how the flexibility of openfpm can be used to debug your program
- Plotting system can export graph in svg (to be included in the paper) - Plotting system can export graph in svg (to be included in the paper)
- Defining a domain an invalid domain like Box<2,float> box({0.0,1.0},{0.0,1.0}) (the correct is {0.0,0.0},{1.0,1.0} )
produce dead-lock or unclear error message in SE_CLASS1, not hint is given, added usefull error message
### Fixed ### Fixed
- Option NO_POSITION was untested - Option NO_POSITION was untested
- Regression: Examples code compilation was broken on OSX (Affect only 0.5.1)
(Internal: Added OSX examples testing in the release pipeline)
- gray_scott example code (variable not initialized)
### Changes ### Changes
......
...@@ -23,6 +23,7 @@ parallel ( ...@@ -23,6 +23,7 @@ parallel (
checkout scm checkout scm
stage ('build_sb15') stage ('build_sb15')
{ {
sh "export"
sh "./build.sh $WORKSPACE $NODE_NAME pdata && make install" sh "./build.sh $WORKSPACE $NODE_NAME pdata && make install"
} }
......
...@@ -261,7 +261,7 @@ int main(int argc, char* argv[]) ...@@ -261,7 +261,7 @@ int main(int argc, char* argv[])
//! \cond [time stepping] \endcond //! \cond [time stepping] \endcond
// sync the ghost // sync the ghost
size_t count; size_t count = 0;
Old.template ghost_get<U,V>(); Old.template ghost_get<U,V>();
// because we assume that spacing[x] == spacing[y] we use formula 2 // because we assume that spacing[x] == spacing[y] we use formula 2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment