about summary refs log tree commit diff stats
path: root/002test.cc
Commit message (Collapse)AuthorAgeFilesLines
* 2095Kartik K. Agaram2015-08-281-1/+1
| | | | | | | | | | | | Finally terminate the experiment of keeping debug prints around. I'm also going to give up on maintaining counts. What we really need is two kinds of tracing: a) For tests, just the domain-specific facts, organized by labels. b) For debugging, just transient dumps to stdout. b) only works if stdout is clean by default. Hmm, I think this means 'stash' should be the transient kind of trace.
* 1965 - don't die on '-' ingredientKartik K. Agaram2015-08-101-1/+13
| | | | Thanks Caleb Couch.
* 1641Kartik K. Agaram2015-06-241-1/+1
| | | | | | Snapshot in switching editor-data.cursor to editor-data.before-cursor. But I have trouble coercing events to touch events, even though using the integer tag 2 for the conversion works.
* 1474 - another warningKartik K. Agaram2015-05-261-0/+1
|
* 1437Kartik K. Agaram2015-05-231-1/+1
|
* 1434 - support all unicode spacesKartik K. Agaram2015-05-231-0/+1
|
* 1391 - avoid unsigned integersKartik K. Agaram2015-05-171-3/+3
|
* 1389Kartik K. Agaram2015-05-161-1/+1
|
* 1388Kartik K. Agaram2015-05-161-0/+1
|
* 1387Kartik K. Agaram2015-05-161-3/+3
|
* 1358 - inform shell of test failureKartik K. Agaram2015-05-121-1/+3
|
* 1357 - temporarily revert floating-point supportKartik K. Agaram2015-05-121-1/+0
|
* 1356 - snapshot #2: floating point supportKartik K. Agaram2015-05-121-0/+1
| | | | | | | | | | | | | | | I added one test to check that divide can return a float, then hacked at the rippling failures across the entire entire codebase until all tests pass. Now I need to look at the changes I made and see if there's a system to them, identify other places that I missed, and figure out the best way to cover all cases. I also need to show real rather than encoded values in the traces, but I can't use value() inside reagent methods because of the name clash with the member variable. So let's take a snapshot before we attempt any refactoring. This was non-trivial to get right. Even if I convince myself that I've gotten it right, I might back this all out if I can't easily *persuade others* that I've gotten it right.
* 1354Kartik K. Agaram2015-05-121-2/+2
|
* 1343Kartik K. Agaram2015-05-111-1/+1
|
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+93
I've tried to update the Readme, but there are at least a couple of issues.
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