networkType

This commit is contained in:
0xFugue 2023-07-18 22:20:35 +05:30
parent 40a05e53a0
commit 96ab91b383
1 changed files with 7 additions and 0 deletions

View File

@ -6,7 +6,14 @@
import matplotlib.pyplot as plt
import numpy as np
import math
import typer
from enum import Enum, EnumMeta
class networkType(Enum):
NEWMANWATTSSTROGATZ = "newmanwattsstrogatz" # mesh, smallworld
REGULAR = "regular" # libp2p
# Util and format functions
#-----------------------------------------------------------