-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcad.rs
310 lines (269 loc) · 8 KB
/
cad.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
use std::fmt;
use std::str::FromStr;
use egg::*;
use crate::{
num::{num, Num},
permute::{Partitioning, Permutation},
};
use log::debug;
pub type EGraph = egg::EGraph<Cad, Meta>;
pub type EClass = egg::EClass<Cad, Meta>;
pub type Rewrite = egg::Rewrite<Cad, Meta>;
pub type Cost = f64;
pub type Vec3 = (Num, Num, Num);
#[derive(PartialEq, Eq, Hash, Debug, Clone)]
pub struct ListVar(pub &'static str);
impl FromStr for ListVar {
type Err = ();
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"i" => Ok(ListVar("i")),
"j" => Ok(ListVar("j")),
"k" => Ok(ListVar("k")),
_ => Err(()),
}
}
}
impl fmt::Display for ListVar {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}
#[derive(PartialEq, Eq, Hash, Debug, Clone)]
pub struct BlackBox(String);
impl FromStr for BlackBox {
type Err = ();
fn from_str(s: &str) -> Result<Self, Self::Err> {
debug!("Parsing black box: {}", s);
Ok(BlackBox(s.to_owned()))
}
}
impl fmt::Display for BlackBox {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let s = self.0.replace("\\\"", "\"");
write!(f, "{}", s)
}
}
define_language! {
pub enum Cad {
Cube = "Cube",
Sphere = "Sphere",
Cylinder = "Cylinder",
Empty = "Empty",
Hull = "Hull",
Nil = "Nil",
Num(Num),
Bool(bool),
MapI = "MapI",
ListVar(ListVar),
Repeat = "Repeat",
Trans = "Trans",
TransPolar = "TransPolar",
Scale = "Scale",
Rotate = "Rotate",
Union = "Union",
Diff = "Diff",
Inter = "Inter",
Map2 = "Map2",
Fold = "Fold",
Affine = "Affine",
Binop = "Binop",
Vec3 = "Vec3",
Cons = "Cons",
Concat = "Concat",
List = "List",
Sort = "Sort",
Unsort = "Unsort",
Part = "Part",
Unpart = "Unpart",
Unpolar = "Unpolar",
Permutation(Permutation),
Partitioning(Partitioning),
Add = "+",
Sub = "-",
Mul = "*",
Div = "/",
BlackBox(BlackBox),
}
}
#[derive(Debug, Clone)]
pub struct Meta {
pub list: Option<Vec<Id>>,
pub cost: Cost,
pub best: RecExpr<Cad>,
}
fn eval(op: Cad, args: &[Cad]) -> Option<Cad> {
use Cad::*;
let a = |i: usize| args[i].clone();
match op {
Add => {
assert_eq!(args.len(), 2);
match (a(0), a(1)) {
(Num(f1), Num(f2)) => Some(Num(num(f1.to_f64() + f2.to_f64()))),
_ => None,
}
}
Sub => {
assert_eq!(args.len(), 2);
match (a(0), a(1)) {
(Num(f1), Num(f2)) => Some(Num(num(f1.to_f64() - f2.to_f64()))),
_ => None,
}
}
Mul => {
assert_eq!(args.len(), 2);
match (a(0), a(1)) {
(Num(f1), Num(f2)) => Some(Num(num(f1.to_f64() * f2.to_f64()))),
_ => None,
}
}
Div => {
assert_eq!(args.len(), 2);
match (a(0), a(1)) {
(Num(f1), Num(f2)) => {
let f = f1.to_f64() / f2.to_f64();
if f.is_finite() && !f2.is_close(0) {
Some(Num(num(f)))
} else {
None
}
}
_ => None,
}
}
_ => None,
}
}
impl Metadata<Cad> for Meta {
type Error = std::convert::Infallible;
fn merge(&self, other: &Self) -> Self {
let list = self.list.as_ref().or(other.list.as_ref()).cloned();
if self.cost <= other.cost {
Self {
list,
..self.clone()
}
} else {
Self {
list,
..other.clone()
}
}
}
fn make(egraph: &EGraph, enode: &ENode<Cad>) -> Self {
let const_args: Option<Vec<Cad>> = enode
.children
.iter()
.map(|&id| {
let e = egraph[id].metadata.best.as_ref();
if e.children.is_empty() {
Some(e.op.clone())
} else {
None
}
})
.collect();
let best = const_args
.and_then(|a| eval(enode.op.clone(), &a))
.map(|op| recexpr!(op))
.unwrap_or_else(|| {
enode
.map_children(|id| egraph[id].metadata.best.clone())
.into()
});
let cost = CostFn.cost(&enode.map_children(|id| egraph[id].metadata.cost));
let list = match enode.op {
Cad::Nil => Some(vec![]),
Cad::Cons => {
assert_eq!(enode.children.len(), 2);
let head = std::iter::once(enode.children[0]);
let tail_meta = &egraph[enode.children[1]].metadata;
tail_meta
.list
.as_ref()
.map(|tail| head.chain(tail.iter().copied()).collect())
// let tail = tail_meta
// .list
// .as_ref()
// .expect("should be a list here")
// .iter()
// .copied();
// Some(head.chain(tail).collect())
}
Cad::List => Some(enode.children.iter().copied().collect()),
_ => None,
};
Self { list, best, cost }
}
fn modify(eclass: &mut EClass) {
if let Some(list1) = eclass.nodes.iter().find(|n| n.op == Cad::List) {
for list2 in eclass.nodes.iter().filter(|n| n.op == Cad::List) {
assert_eq!(
list1.children.len(),
list2.children.len(),
"at id {}, nodes:\n{:#?}",
eclass.id,
eclass.nodes
)
}
}
if let Some(list) = &eclass.metadata.list {
eclass.nodes.push(ENode::new(Cad::List, list.clone()))
}
// // here we prune away excess unsorts, as that will cause some stuff to spin out
// let mut n_unsorts = 0;
// let limit = 1000;
// eclass.nodes.retain(|n| match n.op {
// Cad::Unsort => {
// n_unsorts += 1;
// n_unsorts <= limit
// }
// _ => true,
// });
// if n_unsorts > limit {
// warn!("Went over unsort limit: {} > {}", n_unsorts, limit);
// }
let best = eclass.metadata.best.as_ref();
if best.children.is_empty() {
eclass.nodes.push(ENode::leaf(best.op.clone()))
}
}
}
pub struct CostFn;
impl egg::CostFunction<Cad> for CostFn {
type Cost = Cost;
fn cost(&mut self, enode: &ENode<Cad, Cost>) -> Cost {
use Cad::*;
const BIG: f64 = 100_000_000.0;
const SMALL: f64 = 0.001;
let cost = match enode.op {
Num(n) => {
let s = format!("{}", n);
0.000001 * s.len() as Cost
}
Bool(_) | ListVar(_) => SMALL,
Add | Sub | Mul | Div => SMALL,
BlackBox(_) => 1.0,
Cube | Empty | Nil | Sphere | Cylinder | Hull => 1.0,
Trans | TransPolar | Scale | Rotate => 1.0,
Union | Diff | Inter => 1.0,
Repeat => 0.99,
MapI => 1.0,
Fold => 1.0,
Map2 => 1.0,
Affine => 1.0,
Binop => 1.0,
Concat => 1.0,
Cons => 1.0,
List => 1.0,
Vec3 => 1.0,
Unpolar => BIG,
Sort | Unsort | Part | Unpart => BIG,
Partitioning(_) => BIG,
Permutation(_) => BIG,
};
cost + enode.children.iter().sum::<Cost>()
}
}
// impl Language for Cad {
// }