INNER CODE UNIT · Python

DoneBreakpoint

spacejam/sled · scripts/execution_explorer.py:64

class DoneBreakpoint(gdb.Breakpoint):
    pass


class InterestingBreakpoint(gdb.Breakpoint):
    pass


class DeterministicExecutor:
    def __init__(self, seed=None):
        if seed:
            print("seeding with", seed)
            self.seed = seed
            random.seed(seed)
        else:
            # pick a random new seed if not provided with one
            self.reseed()

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…