Mercurial > hg > octave-lyh
comparison liboctave/fMatrix.cc @ 9578:7dafdb8b062f
refactor comparison ops implementations
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Thu, 27 Aug 2009 11:19:33 +0200 |
parents | 0c72d9284087 |
children | a9b37bae1802 |
comparison
equal
deleted
inserted
replaced
9577:b03062e16c6f | 9578:7dafdb8b062f |
---|---|
3391 } | 3391 } |
3392 | 3392 |
3393 return result; | 3393 return result; |
3394 } | 3394 } |
3395 | 3395 |
3396 MS_CMP_OPS(FloatMatrix, , float, ) | 3396 MS_CMP_OPS (FloatMatrix, float) |
3397 MS_BOOL_OPS (FloatMatrix, float) | 3397 MS_BOOL_OPS (FloatMatrix, float) |
3398 | 3398 |
3399 SM_CMP_OPS(float, , FloatMatrix, ) | 3399 SM_CMP_OPS (float, FloatMatrix) |
3400 SM_BOOL_OPS (float, FloatMatrix) | 3400 SM_BOOL_OPS (float, FloatMatrix) |
3401 | 3401 |
3402 MM_CMP_OPS(FloatMatrix, , FloatMatrix, ) | 3402 MM_CMP_OPS (FloatMatrix, FloatMatrix) |
3403 MM_BOOL_OPS (FloatMatrix, FloatMatrix) | 3403 MM_BOOL_OPS (FloatMatrix, FloatMatrix) |
3404 | 3404 |
3405 /* | 3405 /* |
3406 ;;; Local Variables: *** | 3406 ;;; Local Variables: *** |
3407 ;;; mode: C++ *** | 3407 ;;; mode: C++ *** |