MiniZinc JavaScript
    Preparing search index...

    Interface VarType

    Type definition of a variable/parameter.

    interface VarType {
        dim?: number;
        set?: true;
        type: "string" | "int" | "float" | "bool";
    }
    Index

    Properties

    Properties

    dim?: number

    Number of array dimensions if this is an array

    set?: true

    Whether or not this variable is a set

    type: "string" | "int" | "float" | "bool"

    Type of variable