Polyman Documentation - v2.3.3
    Preparing search index...

    Interface GeneratorScript

    Polygon-format test generation script.

    The script is plain text using the same syntax as Codeforces Polygon:

    gen-name [args...] > N         # write to test N
    gen-name [args...] > $ # write to smallest unused index
    gen-name [args...] > {1-3,7} # generator writes its own files at the listed indices
    <#-- @group name --> # all subsequent generator lines belong to this group
    <#-- comment --> # ignored
    <#list 1..5 as i> gen ${i} > $ </#list> # FreeMarker loop expansion

    Manual tests are NOT in this script — they live in LocalTestset.manualTests.

    GeneratorScript

    interface GeneratorScript {
        script?: string;
        scriptFile?: string;
    }
    Index

    Properties

    Properties

    script?: string

    Inline Polygon-format script text

    scriptFile?: string

    Path to a file containing the script