summaryrefslogtreecommitdiff
path: root/hyp2mat/lib/misc.cc
blob: d8488ae00f9c0c5023265f7523f7a4902f4ff358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 * hyp2mat - convert hyperlynx files to matlab scripts
 * Copyright 2012 Koen De Vleeschauwer.
 *
 * This file is part of hyp2mat.
 *
 * 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 3 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, see <http://www.gnu.org/licenses/>.
 */

#include <limits>

#include "config.h"
#include "hyp2mat.h"

using namespace Hyp2Mat;

std::string Hyp2Mat::version()
{
  return VERSION;
}

Device::Device()
{
  name.clear();
  ref.clear();
  value_type = DEVICE_VALUE_NONE;
  value_float = -1;
  value_string.clear();
}

Pin::Pin()
{
  ref.clear();
  x = 0;
  y = 0;
  z0 = 0;
  z1 = 0;
  layer_name.clear();
  metal.clear();
}

Bounds::Bounds()
{
  /* bounds default to infinity */
  double dbl_max = std::numeric_limits<double>::max();
  x_min = - dbl_max;
  x_max =   dbl_max;
  y_min = - dbl_max;
  y_max =   dbl_max;
  z_min = - dbl_max;
  z_max =   dbl_max;
}

/* not truncated */