All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.z3.enumerations.Z3_ast_print_mode Maven / Gradle / Ivy

There is a newer version: 4.13.4
Show newest version
/**
 *  Automatically generated file
 **/

package com.microsoft.z3.enumerations;

/**
 * Z3_ast_print_mode
 **/
public enum Z3_ast_print_mode {
    Z3_PRINT_SMTLIB_FULL (0),
    Z3_PRINT_LOW_LEVEL (1),
    Z3_PRINT_SMTLIB_COMPLIANT (2),
    Z3_PRINT_SMTLIB2_COMPLIANT (3);

    private final int intValue;

    Z3_ast_print_mode(int v) {
        this.intValue = v;
    }

    public static final Z3_ast_print_mode fromInt(int v) {
        for (Z3_ast_print_mode k: values()) 
            if (k.intValue == v) return k;
        return values()[0];
    }

    public final int toInt() { return this.intValue; }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy