BridgesUNCC / bridges-python

Python client library for Bridges
http://bridgesuncc.github.io
MIT License
3 stars 4 forks source link

array3d test #44

Closed krs-world closed 5 years ago

krs-world commented 5 years ago

Not producing same output as Java and C++. Related to issue on dimensions and subclassing.

krs-world commented 5 years ago

I have fixed the array indexing issues. When referring to an array element, you alwasy use the slowest varying index first, and so on .

A[i][j][k] -- i is the slice, j is row, k is column

I think this issue is fixed in both the tests and the Array.py in t he client and is consistent with C++ and Java