-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
一些小的优化;准备全面迁移到数据后端到int、降低精度到秒级并优化整个框架
- Loading branch information
Showing
2 changed files
with
10 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,3 @@ | ||
namespace InfrastSim.TimeDriven.WebHelper.Enumerate; | ||
internal struct EnumResult { | ||
public EnumResult(OpEnumData[] comb, int init_size, in Efficiency eff, in Efficiency extra_eff) { | ||
this.comb = comb; | ||
this.init_size = init_size; | ||
this.eff = eff; | ||
this.extra_eff = extra_eff; | ||
} | ||
|
||
public OpEnumData[] comb { get; set; } | ||
public int init_size { get; set; } | ||
public Efficiency eff { get; set; } | ||
public Efficiency extra_eff { get; set; } | ||
internal record struct EnumResult(OpEnumData[] comb, int init_size, Efficiency eff, Efficiency extra_eff) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters