mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
22 lines
753 B
Python
22 lines
753 B
Python
import copy
|
|
from typing import Any, List
|
|
|
|
|
|
class BaseGen(object):
|
|
def __init__(self, inputs: List[Any], entry_point: str, contract: str):
|
|
"""Initializing a input mutator.
|
|
|
|
Args:
|
|
inputs (List[Any]): The set of initial inputs (i.e., seeds)
|
|
entry_point (str): The function name to invoke with the input
|
|
contract (str): The contract to verify input validity
|
|
"""
|
|
self.contract = contract
|
|
self.entry_point = entry_point
|
|
self.seed_pool: List[Any] = copy.deepcopy(inputs)
|
|
self.new_inputs = []
|
|
self.seed_hash = set([hash(str(x)) for x in self.seed_pool])
|
|
|
|
def generate(self, num: int) -> List[Any]:
|
|
raise NotImplementedError
|