scientistproject / Scientist.net

A .NET library for carefully refactoring critical paths. It's a port of GitHub's Ruby Scientist library
MIT License
1.46k stars 95 forks source link

Documentation #81

Closed smarts closed 7 years ago

smarts commented 7 years ago

The readme is pretty helpful, but I'm not sure exactly what the difference is [w/o debugging] between Result<T, TClean>.Candidates and Result<T, TClean>.Observations. Is Observations just Candidates + Control?

joncloud commented 7 years ago

Candidates doesn't include the control (the observation that comes from experiment.Use) observations, and Observations includes everything (from experiment.Use and experiment.Try).

joncloud commented 7 years ago

Yup you got it right.

smarts commented 7 years ago

Thanks @joncloud