Skip to content

Partial-order concurrency: Remove unused parameter #2438

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/goto-symex/memory_model_pso.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ void memory_model_psot::operator()(symex_target_equationt &equation)
statistics() << "Adding PSO constraints" << eom;

build_event_lists(equation);
build_clock_type(equation);
build_clock_type();

read_from(equation);
write_serialization_external(equation);
Expand Down
2 changes: 1 addition & 1 deletion src/goto-symex/memory_model_sc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ void memory_model_sct::operator()(symex_target_equationt &equation)
statistics() << "Adding SC constraints" << eom;

build_event_lists(equation);
build_clock_type(equation);
build_clock_type();

read_from(equation);
write_serialization_external(equation);
Expand Down
2 changes: 1 addition & 1 deletion src/goto-symex/memory_model_tso.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void memory_model_tsot::operator()(symex_target_equationt &equation)
statistics() << "Adding TSO constraints" << eom;

build_event_lists(equation);
build_clock_type(equation);
build_clock_type();

read_from(equation);
write_serialization_external(equation);
Expand Down
3 changes: 1 addition & 2 deletions src/goto-symex/partial_order_concurrency.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,7 @@ symbol_exprt partial_order_concurrencyt::clock(
return symbol_exprt(identifier, clock_type);
}

void partial_order_concurrencyt::build_clock_type(
const symex_target_equationt &equation)
void partial_order_concurrencyt::build_clock_type()
{
assert(!numbering.empty());

Expand Down
2 changes: 1 addition & 1 deletion src/goto-symex/partial_order_concurrency.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class partial_order_concurrencyt:public messaget
// produce a clock symbol for some event
typet clock_type;
symbol_exprt clock(event_it e, axiomt axiom);
void build_clock_type(const symex_target_equationt &);
void build_clock_type();

// preprocess and add a constraint to equation
void add_constraint(
Expand Down