Skip to content
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
22 changes: 22 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Rust

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
10 changes: 8 additions & 2 deletions src/algos/meta/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,14 @@ where
let nb_traces = target.len();
// Check whether the fom
if let Some(f) = initial_cache.get_from_cv(target, target) {
debug!("Formula found in cache");
return Some(f);
// Due to hash collisions, the formula may not be right; we check that
// the formula has the right characteristic vector.
if f.eval(traces).accepted_vec() == target {
debug!("Formula found in cache");
return Some(f);
} else {
debug!("Hash collision found a wrong formula {f} for target {target:?}; continuing");
}
}
if nb_traces > 128 {
split_and_solve_non_overlapping(traces, operators, initial_cache, target, params)
Expand Down
Loading