Deleted Added
full compact
Math.h (218893) Math.h (249423)
1//===------ Math.h - PBQP Vector and Matrix classes -------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
1//===------ Math.h - PBQP Vector and Matrix classes -------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_CODEGEN_PBQP_MATH_H
10#ifndef LLVM_CODEGEN_PBQP_MATH_H
11#define LLVM_CODEGEN_PBQP_MATH_H
12
11#define LLVM_CODEGEN_PBQP_MATH_H
12
13#include <cassert>
14#include <algorithm>
13#include <algorithm>
14#include <cassert>
15#include <functional>
16
17namespace PBQP {
18
19typedef float PBQPNum;
20
21/// \brief PBQP Vector class.
22class Vector {

--- 266 unchanged lines hidden ---
15#include <functional>
16
17namespace PBQP {
18
19typedef float PBQPNum;
20
21/// \brief PBQP Vector class.
22class Vector {

--- 266 unchanged lines hidden ---