3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-04-02 18:08:57 +00:00

Fix constructor initializer list syntax in nielsen_graph

m_len_vars(sg.get_manager()) was incorrectly placed inside the constructor
body after the opening { instead of being part of the initializer list.
Move it to the correct position in the initializer list.

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-03-12 18:29:04 +00:00
parent 9b0a7c17a5
commit 572e8a74b0

View file

@ -444,8 +444,8 @@ namespace seq {
nielsen_graph::nielsen_graph(euf::sgraph& sg, simple_solver& solver):
m_sg(sg),
m_solver(solver),
m_len_vars(sg.get_manager()),
m_parikh(alloc(seq_parikh, sg)) {
m_len_vars(sg.get_manager()) {
}
nielsen_graph::~nielsen_graph() {