Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/ObjectPools/StringBuilderPool.cs @ 15189

Last change on this file since 15189 was 15189, checked in by pkimmesw, 7 years ago

#2665 Fixed small issues, testet benchmark suite, added INX Expressions

File size: 334 bytes
Line 
1using System.Text;
2
3namespace HeuristicLab.Problems.ProgramSynthesis.Push.ObjectPools {
4  using HeuristicLab.Problems.ProgramSynthesis.Push.Data.Pool;
5
6  public static class StringBuilderPool {
7    public static readonly ObjectPool<StringBuilder> Instance = new ObjectPool<StringBuilder>(() => new StringBuilder());
8  }
9}
Note: See TracBrowser for help on using the repository browser.