mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-04-29 06:48:41 +00:00
18 lines
276 B
C#
18 lines
276 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Tests.Gvwie
|
|
{
|
|
public enum GeneratorPattern
|
|
{
|
|
Uniform,
|
|
Positive,
|
|
Negative,
|
|
Alternating,
|
|
Small,
|
|
Ascending,
|
|
Clustering,
|
|
}
|
|
}
|