lemon/bits/windows.h
author Balazs Dezso <deba@inf.elte.hu>
Thu, 04 Mar 2010 15:20:59 +0100
changeset 951 41d7ac528c3a
parent 511 879c55700cd4
child 1131 43a91b33f374
permissions -rw-r--r--
Uniforming primal scale to 2 (#314)
alpar@511
     1
/* -*- mode: C++; indent-tabs-mode: nil; -*-
alpar@511
     2
 *
alpar@511
     3
 * This file is a part of LEMON, a generic C++ optimization library.
alpar@511
     4
 *
alpar@511
     5
 * Copyright (C) 2003-2009
alpar@511
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@511
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@511
     8
 *
alpar@511
     9
 * Permission to use, modify and distribute this software is granted
alpar@511
    10
 * provided that this copyright notice appears in all copies. For
alpar@511
    11
 * precise terms see the accompanying LICENSE file.
alpar@511
    12
 *
alpar@511
    13
 * This software is provided "AS IS" with no warranty of any kind,
alpar@511
    14
 * express or implied, and with no claim as to its suitability for any
alpar@511
    15
 * purpose.
alpar@511
    16
 *
alpar@511
    17
 */
alpar@511
    18
deba@576
    19
#ifndef LEMON_BITS_WINDOWS_H
deba@576
    20
#define LEMON_BITS_WINDOWS_H
alpar@511
    21
alpar@511
    22
#include <string>
alpar@511
    23
alpar@511
    24
namespace lemon {
alpar@511
    25
  namespace bits {
alpar@511
    26
    void getWinProcTimes(double &rtime,
alpar@511
    27
                         double &utime, double &stime,
alpar@511
    28
                         double &cutime, double &cstime);
alpar@511
    29
    std::string getWinFormattedDate();
alpar@511
    30
    int getWinRndSeed();
alpar@511
    31
  }
alpar@511
    32
}
alpar@511
    33
alpar@511
    34
#endif