Skip to content

Commit 5093b34

Browse files
Updated with changes in the library
1 parent 964e8c5 commit 5093b34

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

modules/generate.i

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ namespace generate {
213213
%ignore rand_arrangements::rand_arrangements(rand_arrangements&&) noexcept;
214214
%ignore rand_bipartite_arrangements::rand_bipartite_arrangements(rand_bipartite_arrangements&&) noexcept;
215215
%ignore rand_bipartite_arrangements::rand_bipartite_arrangements(properties::bipartite_graph_coloring&&) noexcept;
216-
%ignore rand_bipartite_arrangements::rand_bipartite_arrangements(properties::bipartite_graph_coloring&&, uint64_t) noexcept;
216+
%ignore rand_bipartite_arrangements::rand_bipartite_arrangements(properties::bipartite_graph_coloring&&, const uint64_t) noexcept;
217217
%ignore rand_planar_arrangements::rand_planar_arrangements(rand_planar_arrangements&&) noexcept;
218218
%ignore rand_projective_arrangements::rand_projective_arrangements(rand_projective_arrangements&&) noexcept;
219219

modules/graphs.i

+6-6
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ namespace graphs {
8080

8181
%ignore rooted_tree::rooted_tree(directed_graph&&) noexcept;
8282
%ignore rooted_tree::rooted_tree(rooted_tree&&) noexcept;
83-
%ignore rooted_tree::rooted_tree(free_tree&&, node) noexcept;
84-
%ignore rooted_tree::rooted_tree(free_tree&&, node, bool) noexcept;
85-
%ignore rooted_tree::rooted_tree(free_tree&&, node, bool, bool) noexcept;
83+
%ignore rooted_tree::rooted_tree(free_tree&&, const node) noexcept;
84+
%ignore rooted_tree::rooted_tree(free_tree&&, const node, const bool) noexcept;
85+
%ignore rooted_tree::rooted_tree(free_tree&&, const node, const bool, const bool) noexcept;
8686
%ignore rooted_tree::operator= (const rooted_tree&) noexcept;
8787
%ignore rooted_tree::operator= (rooted_tree&&) noexcept;
88-
%ignore rooted_tree::init_rooted(free_tree&&, node) noexcept;
89-
%ignore rooted_tree::init_rooted(free_tree&&, node, bool) noexcept;
90-
%ignore rooted_tree::init_rooted(free_tree&&, node, bool, bool) noexcept;
88+
%ignore rooted_tree::init_rooted(free_tree&&, const node) noexcept;
89+
%ignore rooted_tree::init_rooted(free_tree&&, const node, const bool) noexcept;
90+
%ignore rooted_tree::init_rooted(free_tree&&, const node, const bool, const bool) noexcept;
9191

9292
} // -- namespace graphs
9393
} // -- namespace lal

0 commit comments

Comments
 (0)