rename search_graph::Delegate fns

This commit is contained in:
lcnr
2025-09-26 14:51:13 +02:00
parent 4a0c7cc730
commit 4e44d58bbc
2 changed files with 10 additions and 7 deletions

View File

@@ -91,11 +91,11 @@ where
}
}
fn on_stack_overflow(cx: I, input: CanonicalInput<I>) -> QueryResult<I> {
fn stack_overflow_result(cx: I, input: CanonicalInput<I>) -> QueryResult<I> {
response_no_constraints(cx, input, Certainty::overflow(true))
}
fn on_fixpoint_overflow(cx: I, input: CanonicalInput<I>) -> QueryResult<I> {
fn fixpoint_overflow_result(cx: I, input: CanonicalInput<I>) -> QueryResult<I> {
response_no_constraints(cx, input, Certainty::overflow(false))
}