mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
366 B
11 lines
366 B
using System.IO;
|
|
|
|
namespace ZeroLevel.HNSW
|
|
{
|
|
public static class SmallWorld
|
|
{
|
|
public static SmallWorld<TItem> CreateWorld<TItem>(NSWOptions<TItem> options) => new SmallWorld<TItem>(options);
|
|
public static SmallWorld<TItem> CreateWorldFrom<TItem>(NSWOptions<TItem> options, Stream stream) => new SmallWorld<TItem>(options, stream);
|
|
}
|
|
}
|