diff options
| author | David Li <li.davidm96@gmail.com> | 2016-01-09 20:27:38 -0700 | 
|---|---|---|
| committer | David Li <li.davidm96@gmail.com> | 2016-01-09 20:27:38 -0700 | 
| commit | 5211190bb0c37d5d03d325e7a8b4d3e0b20a51f4 (patch) | |
| tree | a2e2a5ffda7c2151c0d8402d12937f9e809ba9cf | |
| parent | 5f9aca4b99fa8cd33843f1befd35e48de9a6760c (diff) | |
Add a TODO as a test
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | TODO.md | 9 | 
2 files changed, 11 insertions, 2 deletions
| @@ -4,7 +4,7 @@ version = "0.1.0"  dependencies = [   "docopt 0.6.78 (registry+https://github.com/rust-lang/crates.io-index)",   "rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", - "rustv 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rustv 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",   "time 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)",  ] @@ -75,7 +75,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  [[package]]  name = "rustv" -version = "0.3.0" +version = "0.4.0"  source = "registry+https://github.com/rust-lang/crates.io-index"  dependencies = [   "elfloader32 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -0,0 +1,9 @@ +* Remember: 4 cores per side +    * Each core could sneak attack individually +    * Need some way to have four cores share a cache, and each +      individually sneak attack +        * `#[derive(Clone)]` on `ShareableCache` so each core per team +          can keep track of its own sneak attack status +    * May need to decouple core/cache steps to avoid double-stepping + +<!-- Markdeep: --><style class="fallback">body{visibility:hidden;white-space:pre;font-family:monospace}</style><script src="markdeep.min.js"></script><script src="https://casual-effects.com/markdeep/latest/markdeep.min.js"></script><script>window.alreadyProcessedMarkdeep||(document.body.style.visibility="visible")</script> | 
