Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
Micropp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages
Packages
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
ggiuntol
Micropp
Commits
c33710c6
Commit
c33710c6
authored
Sep 02, 2019
by
Guido Giuntoli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing the names of headers and source files
parent
baedb404
Changes
37
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
37 changed files
with
432 additions
and
35 deletions
+432
-35
include/micropp.hpp
include/micropp.hpp
+397
-0
src/assembly_acc.cpp
src/assembly_acc.cpp
+1
-1
src/homogenize.cpp
src/homogenize.cpp
+1
-1
src/micro2D.cpp
src/micro2D.cpp
+1
-1
src/micro3D.cpp
src/micro3D.cpp
+1
-1
src/micropp.cpp
src/micropp.cpp
+1
-1
src/micropp.f95
src/micropp.f95
+0
-0
src/micropp_c.cpp
src/micropp_c.cpp
+1
-1
src/output.cpp
src/output.cpp
+1
-1
src/solve.cpp
src/solve.cpp
+1
-1
test/benchmark-damage.cpp
test/benchmark-damage.cpp
+1
-1
test/benchmark-elastic.cpp
test/benchmark-elastic.cpp
+1
-1
test/benchmark-mic-1.cpp
test/benchmark-mic-1.cpp
+1
-1
test/benchmark-mic-2.cpp
test/benchmark-mic-2.cpp
+1
-1
test/benchmark-mic-3.cpp
test/benchmark-mic-3.cpp
+1
-1
test/benchmark-mic-4.cpp
test/benchmark-mic-4.cpp
+1
-1
test/benchmark-plastic.cpp
test/benchmark-plastic.cpp
+1
-1
test/benchmark-sc2019.cpp
test/benchmark-sc2019.cpp
+1
-1
test/hybrid-mpi-omp.cpp
test/hybrid-mpi-omp.cpp
+1
-1
test/multi-gpu-mpi.cpp
test/multi-gpu-mpi.cpp
+1
-1
test/test3d_1.cpp
test/test3d_1.cpp
+1
-1
test/test3d_2.cpp
test/test3d_2.cpp
+1
-1
test/test3d_4.cpp
test/test3d_4.cpp
+1
-1
test/test3d_5.cpp
test/test3d_5.cpp
+1
-1
test/test_A0.cpp
test/test_A0.cpp
+1
-1
test/test_MIC3D_8.cpp
test/test_MIC3D_8.cpp
+1
-1
test/test_assembly_jac_omp.cpp
test/test_assembly_jac_omp.cpp
+1
-1
test/test_assembly_res_omp.cpp
test/test_assembly_res_omp.cpp
+1
-1
test/test_cg.cpp
test/test_cg.cpp
+1
-1
test/test_damage.cpp
test/test_damage.cpp
+1
-1
test/test_get_elem_nodes.cpp
test/test_get_elem_nodes.cpp
+1
-1
test/test_newton_non_linear.cpp
test/test_newton_non_linear.cpp
+1
-1
test/test_omp.cpp
test/test_omp.cpp
+1
-1
test/test_print_vtu_1.cpp
test/test_print_vtu_1.cpp
+1
-1
test/test_restart.cpp
test/test_restart.cpp
+1
-1
test/test_set_displ_bc_omp.cpp
test/test_set_displ_bc_omp.cpp
+1
-1
test/test_solver_omp.cpp
test/test_solver_omp.cpp
+1
-1
No files found.
include/micropp.hpp
0 → 100644
View file @
c33710c6
This diff is collapsed.
Click to expand it.
src/assembly_acc.cpp
View file @
c33710c6
...
...
@@ -22,7 +22,7 @@
*/
#include "micro.hpp"
#include "micro
pp
.hpp"
template
<>
...
...
src/homogenize.cpp
View file @
c33710c6
...
...
@@ -27,7 +27,7 @@
#include "instrument.hpp"
#include "micro.hpp"
#include "micro
pp
.hpp"
template
<
int
tdim
>
...
...
src/micro2D.cpp
View file @
c33710c6
...
...
@@ -21,7 +21,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "micro.hpp"
#include "micro
pp
.hpp"
template
<>
...
...
src/micro3D.cpp
View file @
c33710c6
...
...
@@ -21,7 +21,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "micro.hpp"
#include "micro
pp
.hpp"
template
<>
...
...
src/micro
_common
.cpp
→
src/micro
pp
.cpp
View file @
c33710c6
...
...
@@ -22,7 +22,7 @@
*/
#include "micro.hpp"
#include "micro
pp
.hpp"
#include "material.hpp"
...
...
src/micro.f95
→
src/micro
pp
.f95
View file @
c33710c6
File moved
src/micropp_c.cpp
View file @
c33710c6
...
...
@@ -22,7 +22,7 @@
*/
#include "micropp_c.h"
#include "micro.hpp"
#include "micro
pp
.hpp"
#include "material_base.h"
extern
"C"
{
...
...
src/output.cpp
View file @
c33710c6
...
...
@@ -21,7 +21,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
src/solve.cpp
View file @
c33710c6
...
...
@@ -22,7 +22,7 @@
*/
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/benchmark-damage.cpp
View file @
c33710c6
...
...
@@ -30,7 +30,7 @@
#include <bits/stdc++.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/benchmark-elastic.cpp
View file @
c33710c6
...
...
@@ -30,7 +30,7 @@
#include <bits/stdc++.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/benchmark-mic-1.cpp
View file @
c33710c6
...
...
@@ -30,7 +30,7 @@
#include <bits/stdc++.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/benchmark-mic-2.cpp
View file @
c33710c6
...
...
@@ -30,7 +30,7 @@
#include <bits/stdc++.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/benchmark-mic-3.cpp
View file @
c33710c6
...
...
@@ -30,7 +30,7 @@
#include <bits/stdc++.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/benchmark-mic-4.cpp
View file @
c33710c6
...
...
@@ -30,7 +30,7 @@
#include <bits/stdc++.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/benchmark-plastic.cpp
View file @
c33710c6
...
...
@@ -30,7 +30,7 @@
#include <bits/stdc++.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/benchmark-sc2019.cpp
View file @
c33710c6
...
...
@@ -31,7 +31,7 @@
#include <mpi.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/hybrid-mpi-omp.cpp
View file @
c33710c6
...
...
@@ -31,7 +31,7 @@
#include <mpi.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/multi-gpu-mpi.cpp
View file @
c33710c6
...
...
@@ -31,7 +31,7 @@
#include <mpi.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/test3d_1.cpp
View file @
c33710c6
...
...
@@ -25,7 +25,7 @@
#include <ctime>
#include <cassert>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/test3d_2.cpp
View file @
c33710c6
...
...
@@ -28,7 +28,7 @@
#include <bits/stdc++.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/test3d_4.cpp
View file @
c33710c6
...
...
@@ -27,7 +27,7 @@
#include <chrono>
#include <bits/stdc++.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
using
namespace
std
::
chrono
;
...
...
test/test3d_5.cpp
View file @
c33710c6
...
...
@@ -26,7 +26,7 @@
#include <ctime>
#include <cassert>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/test_A0.cpp
View file @
c33710c6
...
...
@@ -27,7 +27,7 @@
#include <ctime>
#include <cassert>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/test_MIC3D_8.cpp
View file @
c33710c6
...
...
@@ -25,7 +25,7 @@
#include <ctime>
#include <cassert>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/test_assembly_jac_omp.cpp
View file @
c33710c6
...
...
@@ -25,7 +25,7 @@
#include <ctime>
#include <cassert>
#include "micro.hpp"
#include "micro
pp
.hpp"
#define REPETITIONS 20
...
...
test/test_assembly_res_omp.cpp
View file @
c33710c6
...
...
@@ -25,7 +25,7 @@
#include <ctime>
#include <cassert>
#include "micro.hpp"
#include "micro
pp
.hpp"
#define REPETITIONS 20
...
...
test/test_cg.cpp
View file @
c33710c6
...
...
@@ -27,7 +27,7 @@
#include <ctime>
#include <cassert>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/test_damage.cpp
View file @
c33710c6
...
...
@@ -25,7 +25,7 @@
#include <ctime>
#include <cassert>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/test_get_elem_nodes.cpp
View file @
c33710c6
...
...
@@ -25,7 +25,7 @@
#include <ctime>
#include <cassert>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/test_newton_non_linear.cpp
View file @
c33710c6
...
...
@@ -25,7 +25,7 @@
#include <ctime>
#include <cassert>
#include "micro.hpp"
#include "micro
pp
.hpp"
#define REPETITIONS 1
...
...
test/test_omp.cpp
View file @
c33710c6
...
...
@@ -28,7 +28,7 @@
#include <chrono>
#include <bits/stdc++.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
using
namespace
std
::
chrono
;
...
...
test/test_print_vtu_1.cpp
View file @
c33710c6
...
...
@@ -27,7 +27,7 @@
#include <ctime>
#include <cassert>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/test_restart.cpp
View file @
c33710c6
...
...
@@ -25,7 +25,7 @@
#include <ctime>
#include <cassert>
#include "micro.hpp"
#include "micro
pp
.hpp"
using
namespace
std
;
...
...
test/test_set_displ_bc_omp.cpp
View file @
c33710c6
...
...
@@ -27,7 +27,7 @@
#include <bits/stdc++.h>
#include "micro.hpp"
#include "micro
pp
.hpp"
#define REPETITIONS 20
...
...
test/test_solver_omp.cpp
View file @
c33710c6
...
...
@@ -25,7 +25,7 @@
#include <ctime>
#include <cassert>
#include "micro.hpp"
#include "micro
pp
.hpp"
#define REPETITIONS 20
...
...
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