3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-17 18:43:45 +00:00

Fix build: correct constructor initializer list syntax in seq_nielsen.cpp

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-03-12 20:16:52 +00:00
parent 196ce815f3
commit c6cfd43ab2

View file

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