Skip to content
Snippets Groups Projects
  1. Dec 13, 2024
  2. Oct 02, 2024
  3. Oct 01, 2024
  4. Sep 30, 2024
  5. Sep 26, 2024
  6. Aug 27, 2024
  7. Aug 26, 2024
  8. Aug 23, 2024
  9. Aug 21, 2024
  10. Aug 20, 2024
  11. Jul 31, 2024
    • Denis Steckelmacher's avatar
      Make sure that operators do not generate constants · 15a2ecbb
      Denis Steckelmacher authored
      Constant propagation does not resolve things like (x[0] != x[0]) as
      False, which then prevents the evaluation from detecting that the
      program is not actually looking at x. By removing any operator that may
      map a function of x to a constant, we make sure that a program that has
      "x" in its expression actually has an x-dependent output.
      
      NOTE: This commit does not address a corner case, of exp(large-number)
      being a constant (exp(10)). Maybe some programs may learn to use exp and
      then a division by a constant to fabricate a constant even though "x"
      appears in their string representation
      15a2ecbb
    • Denis Steckelmacher's avatar
      Make the expected result of a random program 0 · 835587fd
      Denis Steckelmacher authored
      Add negative versions of functions that have a positive image, so, on
      average on random DNAs, the output of a program is not biased towards
      positive numbers.
      835587fd
  12. Jul 24, 2024
  13. Jul 23, 2024
  14. Jul 19, 2024
  15. Jul 18, 2024
  16. Jul 17, 2024
  17. Jul 16, 2024
Loading