// // $Source: /cvsroot/gambit/gambit/sources/tools/lp/lp.cc,v $ // $Date: 2006/08/12 20:19:50 $ // $Revision: 1.4 $ // // DESCRIPTION: // Implementation of algorithm to compute mixed strategy equilibria // of constant sum normal form games via linear programming // // This file is part of Gambit // Copyright (c) 2006, The Gambit Project // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // #include #include #include "libgambit/libgambit.h" template void SolveExtensive(const Gambit::Game &p_game); template void SolveStrategic(const Gambit::Game &p_game); void PrintBanner(std::ostream &p_stream) { p_stream << "Compute Nash equilibria by solving a linear program\n"; p_stream << "Gambit version " VERSION ", Copyright (C) 2005, The Gambit Project\n"; p_stream << "This is free software, distributed under the GNU GPL\n\n"; } void PrintHelp(char *progname) { PrintBanner(std::cerr); std::cerr << "Usage: " << progname << " [OPTIONS]\n"; std::cerr << "Accepts game on standard input.\n"; std::cerr << "With no options, reports all Nash equilibria found.\n\n"; std::cerr << "Options:\n"; std::cerr << " -d DECIMALS compute using floating-point arithmetic;\n"; std::cerr << " display results with DECIMALS digits\n"; std::cerr << " -S use strategic game\n"; std::cerr << " -h print this help message\n"; std::cerr << " -q quiet mode (suppresses banner)\n"; exit(1); } int g_numDecimals = 6; int main(int argc, char *argv[]) { int c; bool useFloat = false, useStrategic = false, quiet = false; while ((c = getopt(argc, argv, "d:hqS")) != -1) { switch (c) { case 'd': useFloat = true; g_numDecimals = atoi(optarg); break; case 'h': PrintHelp(argv[0]); break; case 'q': quiet = true; break; case 'S': useStrategic = true; break; case '?': if (isprint(optopt)) { std::cerr << argv[0] << ": Unknown option `-" << ((char) optopt) << "'.\n"; } else { std::cerr << argv[0] << ": Unknown option character `\\x" << optopt << "`.\n"; } return 1; default: abort(); } } if (!quiet) { PrintBanner(std::cerr); } try { Gambit::Game game = Gambit::ReadGame(std::cin); if (game->NumPlayers() != 2) { std::cerr << "Error: Game does not have two players.\n"; return 1; } if (!game->IsConstSum()) { std::cerr << "Error: Game is not constant-sum.\n"; return 1; } if (!game->IsTree() || useStrategic) { game->BuildComputedValues(); if (useFloat) { SolveStrategic(game); } else { SolveStrategic(game); } } else { if (useFloat) { SolveExtensive(game); } else { SolveExtensive(game); } } return 0; } catch (Gambit::InvalidFileException) { std::cerr << "Error: Game not in a recognized format.\n"; return 1; } catch (...) { std::cerr << "Error: An internal error occurred.\n"; return 1; } }