[pitboss/grind] cleanup session-0012 (20260520T233019Z-6958)

This commit is contained in:
pitboss 2026-05-21 07:10:26 -05:00
parent 227675021b
commit b468f31a68
8 changed files with 70 additions and 16 deletions

View file

@ -837,7 +837,7 @@ fn run_firecracker(
) -> Result<SandboxOutcome, SandboxError> {
#[cfg(feature = "firecracker")]
{
return firecracker::run(_harness, _payload_bytes, _opts);
firecracker::run(_harness, _payload_bytes, _opts)
}
#[cfg(not(feature = "firecracker"))]
{

View file

@ -192,7 +192,7 @@ pub fn render_welcome() -> String {
for line in LOGO {
out.push_str(&format!(
" {}\n",
style(line).true_color(114, 243, 215).bold()
style(line).true_color(46, 160, 103).bold()
));
}

View file

@ -4,7 +4,6 @@
/// - `join` is commutative, associative, and idempotent
/// - `bot()` is the identity for `join`
/// - `leq(a, b)` iff `join(a, b) == b`
#[allow(dead_code)]
pub trait Lattice: Clone + Eq + Sized {
/// Bottom element (least information / unreachable).
fn bot() -> Self;
@ -28,7 +27,6 @@ pub trait Lattice: Clone + Eq + Sized {
/// - `meet(a, b) ⊑ a` and `meet(a, b) ⊑ b`
/// - `widen(a, b) ⊒ join(a, b)` (widening is at least as imprecise as join)
/// - Ascending chains under `widen` stabilize in finite steps
#[allow(dead_code)]
pub trait AbstractDomain: Lattice {
/// Top element (no information / maximally imprecise).
fn top() -> Self;