Library for mutating a DFA represented using the dfa library.
Project description
DFA Mutate
Primitives and utilities for manipulating deterministic finite automata (DFA) represented using the dfa library.
Table of Contents
Installation
If you just need to use dfa_mutate, you can just run:
$ pip install dfa_mutate
For developers, note that this project uses the poetry python package/dependency management tool. Please familarize yourself with it and then run:
$ poetry install
Usage
Example Usage:
from dfa import DFA
import dfa_mutate
dfa1 = DFA(
start=0,
inputs={0, 1},
label=lambda s: (s % 4) == 3,
transition=lambda s, c: (s + c) % 4,
)
# Pick a specific mutation.
dfa2 = dfa_mutate.add_state(dfa1)
dfa3 = dfa_mutate.change_start(dfa1)
dfa4 = dfa_mutate.change_transition(dfa1)
dfa5 = dfa_mutate.relabel_state(dfa1)
# Infinite Generator mutations round-robin (will repeat).
dfas = dfa_mutate.generate_mutations(orig)
# Sample DFA using softmax over a scoring function (default constant).
# Uses first n dfas generated by above generator.
# NOTE: requires the optional numpy dependency.
dfa6 = dfa_mutate.sample_mutation(dfa1, n=20, score=lambda d: len(d.states()))
# All functions support passing in random number generator.
import random
dfa7 = dfa_mutate.relabel_state(dfa1, random.Random(0))
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dfa_mutate-0.1.3.tar.gz.
File metadata
- Download URL: dfa_mutate-0.1.3.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.0 CPython/3.10.9 Linux/5.15.90
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
285bec27221f8aee9d992b3d9ecfd176be5e0f71c2d94af579af3b29ade16030
|
|
| MD5 |
e32451adbccc85085567ca796e0300ab
|
|
| BLAKE2b-256 |
4085c461a2eb1ff129cdb3043674b1e75918056fceb7dc5b5e3de9e8087901f9
|
File details
Details for the file dfa_mutate-0.1.3-py3-none-any.whl.
File metadata
- Download URL: dfa_mutate-0.1.3-py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.0 CPython/3.10.9 Linux/5.15.90
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abe00e8afb4b7bf164806d3696caa1e511b2e869ac272f22b8e8afee4018d5ed
|
|
| MD5 |
9ded67290d559d1ba86b492e1838f6d3
|
|
| BLAKE2b-256 |
9fe06bffb032b35a2545ae3bf252f02cbf9cda30d4b43bdb77f766f5078ae81b
|