Skip to content

Commit a0ad94a

Browse files
Apply prepare changes
1 parent a1b1ea5 commit a0ad94a

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

commitlint.config.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const Configuration = {
1414
"type-empty": [0],
1515
"type-enum": [2, "always", ["feat", "fix", "perf"]],
1616
},
17-
}
17+
defaultIgnores: false,
18+
};
1819

19-
export default Configuration
20+
export default Configuration;

include/geode/stochastic/sampling/mcmc/simulation_runner.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ namespace geode
6464
{
6565
public:
6666
SimulationRunner( const SpatialDomain< ObjectType::dim >& domain )
67-
: domain_( domain ){};
67+
: domain_( domain ) {};
6868
virtual ~SimulationRunner() = default;
6969

7070
virtual void initialize() = 0;

tests/stochastic/sampling/mcmc/test-mh-poisson.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ namespace
5656
{
5757
public:
5858
PoissonSimulationRunner( const geode::SpatialDomain< 2 >& domain )
59-
: geode::SimulationRunner< geode::Point2D >( domain ){};
59+
: geode::SimulationRunner< geode::Point2D >( domain ) {};
6060

6161
void add_set_descriptor( const SetDescription& descriptor )
6262
{

0 commit comments

Comments
 (0)