blob: 3f8b189ed31a0b653b83e1bfd0423d717b8cffc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright (C) 2004, 2006 International Business Machines and others.
// All Rights Reserved.
// This code is published under the Common Public License.
//
// $Id: IpTypes.hpp 735 2006-06-04 06:10:05Z andreasw $
//
// Authors: Carl Laird, Andreas Waechter IBM 2004-08-13
#ifndef __IPTYPES_HPP__
#define __IPTYPES_HPP__
namespace Ipopt
{
/** Type of all numbers */
typedef double Number;
/** Type of all indices of vectors, matrices etc */
typedef int Index;
/** Type of default integer */
typedef int Int;
} // namespace Ipopt
#endif
|