Skip to content

Commit

Permalink
docs: document LinkRecursiveNotMatched
Browse files Browse the repository at this point in the history
The information was taken from the usage of ProductionLink.Flags in ProductionTableView, lines 770+.
  • Loading branch information
shpaass committed Jun 28, 2024
1 parent 24f11ed commit 725a14e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Yafc.Model/Model/ProductionTableContent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,10 @@ public class ProductionLink(ProductionTable group, Goods goods) : ModelObject<Pr
[Flags]
public enum Flags {
LinkNotMatched = 1 << 0,
/// <summary>
/// Indicates if ihere is a feedback loop that could not get balanced.
/// It doesn't mean that this link is the problem, but it's a part of the loop.
/// </summary>
LinkRecursiveNotMatched = 1 << 1,
HasConsumption = 1 << 2,
HasProduction = 1 << 3,
Expand Down

0 comments on commit 725a14e

Please sign in to comment.