Skip to content

Commit f8c9b0a

Browse files
fix
1 parent c9f6f53 commit f8c9b0a

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

bindings/python/src/stochastic/spatial/object_sets.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ namespace geode
4141
.def( "nb_objects", &ObjectSets::nb_objects );
4242
}
4343

44-
void define_spatial_domain( pybind11::module& module )
44+
void define_object_sets( pybind11::module& module )
4545
{
4646
define_object_sets_impl< Point2D >( module, "Point2D" );
4747
define_object_sets_impl< Point3D >( module, "Point3D" );

bindings/python/src/stochastic/stochastic.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333

3434
#include "sampling/distributions.hpp"
3535
#include "sampling/random_engine.hpp"
36+
37+
#include "spatial/object_sets.hpp"
3638
#include "spatial/spatial_domain.hpp"
3739

3840
#include "applications/fractures.hpp"
@@ -46,6 +48,7 @@ PYBIND11_MODULE( opengeode_stochastic_py_stochastic, module )
4648
&geode::OpenGeodeStochasticStochasticLibrary::initialize );
4749

4850
geode::define_spatial_domain( module );
51+
geode::define_object_sets( module );
4952

5053
geode::define_distributions( module );
5154
geode::define_random_engine( module );

0 commit comments

Comments
 (0)