klayout/testdata
Thomas Ferreira de Lima 214662997c
Changing pya.CplxTrans.angle test from assertEqual to assertAlmostEqual
Rationale:
pya.CplxTrans.angle is computed by doing atan2(m_sin, m_cos), but the algorithm used both in C and python for sin, cos and atan2 are not as precise as IEEE's float.

In python, for example, this happens:

``` python
>>> from math import pi, cos, sin, atan2
>>> atan2(sin(45*pi/180), cos(45*pi/180)) * 180 / pi == 45
False
>>> atan2(sin(45*pi/180), cos(45*pi/180)) * 180 / pi, 45
(44.99999999999999, 45)
```
2018-09-22 15:15:33 -04:00
..
algo Some enhancements to layer and cell mapping 2017-08-30 01:11:38 +02:00
bd strmxor: fixes and basic functionality tests. 2017-08-21 00:00:27 +02:00
bool Updated slow EdgeProcessor unit test golden data. 2018-07-23 19:51:47 +02:00
cif Fixed CIF reader unit test (wrong file name) 2017-12-27 21:40:15 +01:00
drc DRC test suite Ruby 1.8 compatibility. 2018-05-02 00:51:47 +02:00
dxf WIP: DXF keep layer names option, refactoring, added tests, UI, XML serialization. 2018-04-16 19:47:12 +02:00
gds Added testcase for #166. 2018-09-17 01:51:23 +02:00
gds2_txt Initialized repository with current sources. 2017-02-12 13:21:08 +01:00
klayout_main Compatibility with Ruby 1.8.7 (main app test), tests fixed for CentOS6 2018-05-02 07:32:20 +02:00
net_tracer Added missing test files for net tracer. 2017-02-12 16:12:24 +01:00
oasis Fixed #152 (shape count wrong) 2018-08-13 09:30:46 +02:00
other Initialized repository with current sources. 2017-02-12 13:21:08 +01:00
python Changing pya.CplxTrans.angle test from assertEqual to assertAlmostEqual 2018-09-22 15:15:33 -04:00
ruby Bugfix in the annotation area 2018-09-17 21:25:28 +02:00
vendor/ruby/test RBA Unit test enhancements 2017-07-23 23:03:21 +02:00