Skip to content

Commit 19a6faa

Browse files
BotellaAgithub-actions[bot]
authored andcommitted
Apply prepare changes
1 parent a795600 commit 19a6faa

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

bindings/python/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is autogenerated by pip-compile with Python 3.10
33
# by the following command:
44
#
5-
# pip-compile bindings/python/requirements.in
5+
# pip-compile --pre bindings/python/requirements.in
66
#
7-
opengeode-core==15.*,>=15.2.5
7+
opengeode-core==15.*,>=15.4.1
88
# via -r bindings/python/requirements.in

include/geode/geosciences/explicit/mixin/builder/fault_blocks_builder.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ namespace geode
4949
{
5050
}
5151

52-
[[nodiscard]] const uuid& create_fault_block();
52+
[[nodiscard]] const uuid& create_fault_block();
5353

5454
void create_fault_block( uuid fault_block_id );
5555

src/geode/geosciences/explicit/mixin/core/stratigraphic_units.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ namespace geode
169169
StratigraphicUnitRangeBase(
170170
const StratigraphicUnits& stratigraphic_units )
171171
: impl_( stratigraphic_units.impl_->begin(),
172-
stratigraphic_units.impl_->end() )
172+
stratigraphic_units.impl_->end() )
173173
{
174174
}
175175

src/geode/geosciences/explicit/representation/core/cross_section.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ namespace geode
158158

159159
CrossSection::HorizonItemRange::~HorizonItemRange() = default;
160160

161-
auto CrossSection::HorizonItemRange::begin() const
162-
-> const HorizonItemRange&
161+
auto
162+
CrossSection::HorizonItemRange::begin() const -> const HorizonItemRange&
163163
{
164164
return *this;
165165
}
@@ -262,7 +262,7 @@ namespace geode
262262
const CrossSection& cross_section,
263263
const StratigraphicUnit2D& stratigraphic_unit )
264264
: Relationships::ItemRangeIterator(
265-
cross_section, stratigraphic_unit.id() ),
265+
cross_section, stratigraphic_unit.id() ),
266266
cross_section_( cross_section )
267267
{
268268
}

src/geode/geosciences/explicit/representation/core/structural_model.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ namespace geode
226226
const StructuralModel& structural_model,
227227
const FaultBlock3D& fault_block )
228228
: Relationships::ItemRangeIterator(
229-
structural_model, fault_block.id() ),
229+
structural_model, fault_block.id() ),
230230
structural_model_( structural_model )
231231
{
232232
}
@@ -268,7 +268,7 @@ namespace geode
268268
const StructuralModel& structural_model,
269269
const StratigraphicUnit3D& stratigraphic_unit )
270270
: Relationships::ItemRangeIterator(
271-
structural_model, stratigraphic_unit.id() ),
271+
structural_model, stratigraphic_unit.id() ),
272272
structural_model_( structural_model )
273273
{
274274
}

src/geode/geosciences/implicit/representation/core/stratigraphic_model.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ namespace geode
262262
const Block3D& block,
263263
index_t tetrahedron_id )
264264
: indices_{ block.mesh().polyhedron_vertices(
265-
tetrahedron_id ) },
265+
tetrahedron_id ) },
266266
positive_tetra_{
267267
model.stratigraphic_coordinates( block, indices_[0] )
268268
.stratigraphic_coordinates(),

0 commit comments

Comments
 (0)