tlh24 / cortex

Apache License 2.0
7 stars 0 forks source link

program database storage refactor #8

Open tlh24 opened 1 year ago

tlh24 commented 1 year ago

Per notes from Tues night:

  1. Replace Vector with a fixed Array
  2. Keep track of unused slots in the array with a list
  3. Remove unused nodes periodically, without corrupting the rest of the graph. Otherwise we end up running out of memory for the working programs! (Certainly can make things a good bit larger, but still..)

working on new branch vec2arr for this.