62 /// @brief This stores how many things must run after the target workunit.
63 /// @details This is most important sorting factor. In the Default algorithm.
64 /// All of the Workunit that the most workunits depend on are run before the
65 /// any others. Since this number is usually low (less than 10ish) in large
66 /// groups of workunits, then there must be a tie-breaker. This should be
67 /// calculated including the dependers of all the dependers (I don't think
68 /// counting a workunit twice hurts, and it may even help if something
69 /// actually depend on multiple workunits that depend on this.)
70 /// @note I chose the word depender instead of dependent, to make the distinction between this field and dependencies more clear when communicated verbally. In some english dialects dependencies is pronounced Dee-pen-dent-sees only one syllable off from Dee-pen-dent.