Skip to content

Commit 6668f1d

Browse files
committed
more cookbook/benchmark fixes
1 parent 8b384b9 commit 6668f1d

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

benchmarks/solcx/compositional_fields/solcx_compositional_fields.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ namespace aspect
1515
class SolCxCompositionalMaterial : public SolCxMaterial<dim>
1616
{
1717
public:
18-
virtual void evaluate(const MaterialModel::MaterialModelInputs<dim> &in,
19-
MaterialModel::MaterialModelOutputs<dim> &out) const
18+
void evaluate(const MaterialModel::MaterialModelInputs<dim> &in,
19+
MaterialModel::MaterialModelOutputs<dim> &out) const override
2020
{
2121
for (unsigned int i=0; i < in.n_evaluation_points(); ++i)
2222
{

cookbooks/check.mk

+15-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,10 @@ mainprms:= $(wildcard *.prm)
7070

7171
main: dummy $(mainprms)
7272

73-
# custom rules. Make them dependent on dummy like this:
73+
74+
#
75+
#
76+
# Custom rules. Make them dependent on dummy like this:
7477
#
7578
# example/: dummy
7679
# @$(def); run_prm $@ test.prm
@@ -79,6 +82,16 @@ free_surface_with_crust/: dummy
7982
+@$(def); make_lib $@/plugin
8083
@$(def); run_all_prms $@
8184

82-
# does not run without generating an input file using a python script
85+
# This does not run without generating an input file using a python script
8386
prescribed_velocity_ascii_data/: dummy
8487
+@$(def); make_lib $@
88+
89+
# Manually list files (and ignore mantle_setup_restart.prm as _start does not generate
90+
# a checkpoint file after 1 step
91+
future/: dummy
92+
@$(def); run_prm $@ mantle_setup_start.prm
93+
@$(def); run_prm $@ net_rotation.prm
94+
@$(def); run_prm $@ periodic_box.prm
95+
@$(def); run_prm $@ radiogenic_heating.prm
96+
@$(def); run_prm $@ radiogenic_heating_function.prm
97+
@$(def); run_prm $@ sphere.prm

0 commit comments

Comments
 (0)