Skip to content
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

92 link l2 clipping to bounds and max multiplicity #107

Merged
merged 38 commits into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
5180f43
refacto
ngrislain Sep 5, 2023
a634630
Fixed l1 and l2 norms
ngrislain Sep 5, 2023
8c4f8be
ok
ngrislain Sep 5, 2023
42337b6
L1 and L2 work
ngrislain Sep 5, 2023
f0cdad4
Clipped values
ngrislain Sep 6, 2023
ad8e7cd
Fix clipping
ngrislain Sep 6, 2023
de1c0f3
To fix
ngrislain Sep 6, 2023
b885f74
Merge branch 'main' into 92-link-l2-clipping-to-bounds-and-max-multip…
ngrislain Sep 7, 2023
6b9fe6b
ok
ngrislain Sep 7, 2023
7388331
fixed And op for struct of structs`
Sep 7, 2023
df6bfaa
fmt
Sep 7, 2023
a5e3743
fixed tests
Sep 7, 2023
dec2384
fixed tests
Sep 7, 2023
0e48542
format
Sep 7, 2023
830cb7b
fixed test
Sep 7, 2023
8bacdfd
fmt
Sep 7, 2023
bc6ba04
fixed test
Sep 7, 2023
27e3f1e
fmt
Sep 7, 2023
d34e134
fix extend
ngrislain Sep 7, 2023
f63cc5e
ok
ngrislain Sep 8, 2023
d3c73e2
Merge branch 'main' into 92-link-l2-clipping-to-bounds-and-max-multip…
ngrislain Sep 8, 2023
47df6cf
ok
ngrislain Sep 8, 2023
1d7a077
Optionnal
ngrislain Sep 8, 2023
cd6ec96
impl
ngrislain Sep 8, 2023
35ad8ce
L2 clipping working
ngrislain Sep 8, 2023
661dc8d
ok
ngrislain Sep 8, 2023
037c2a3
In progress
ngrislain Sep 9, 2023
f96d80d
refactor in progress
ngrislain Sep 9, 2023
a04a0c3
changed
ngrislain Sep 9, 2023
0c25c7c
Fixed
ngrislain Sep 9, 2023
de0f5ee
ok
ngrislain Sep 10, 2023
7f83e94
l2_clip reduce
ngrislain Sep 11, 2023
0685663
New methods for Map and Reduce
ngrislain Sep 11, 2023
e2e57ac
Clip all sums
ngrislain Sep 11, 2023
dbe568f
ok
ngrislain Sep 11, 2023
fa65772
Updated protection
ngrislain Sep 11, 2023
2da4d57
compilation
ngrislain Sep 11, 2023
84117b1
Almost there
ngrislain Sep 11, 2023
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
4 changes: 2 additions & 2 deletions examples/website.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ fn protect() {
)
.unwrap();
println!("relation = {relation}");
let relation = relation.force_protect_from_field_paths(
let relation: Relation = relation.force_protect_from_field_paths(
&relations,
&[
(
Expand All @@ -76,7 +76,7 @@ fn protect() {
("order_table", &[("user_id", "user_table", "id")], "name"),
("user_table", &[], "name"),
],
);
).into();
println!("relation = {relation}");
relation.display_dot().unwrap();
let query = Query::from(&relation);
Expand Down
Loading