Cookie Settings

Try our new documentation site (beta).

Filter Content By
Version
Table of contents
Filter by Language


GRBversion

void GRBversion ( int *majorP,
    int *minorP,
    int *technicalP )

Return the Gurobi library version number (major, minor, and technical).

Arguments:

majorP: The location in which the major version number should be placed. May be NULL.

minorP: The location in which the minor version number should be placed. May be NULL.

technicalP: The location in which the technical version number should be placed. May be NULL.

Example usage:

  int major, minor, technical;
  GRBversion(&major, &minor, &technical);
  printf("Gurobi library version %d.%d.%d\n", major, minor, technical);