mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-18 20:15:14 +02:00
[pitboss/grind] cleanup session-0012 (20260520T233019Z-6958)
This commit is contained in:
parent
227675021b
commit
b468f31a68
8 changed files with 70 additions and 16 deletions
|
|
@ -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"))]
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue