diff src/OPERATORS/op-bm-bm.cc @ 4550:69a9b22a72a2

[project @ 2003-10-27 15:41:55 by jwe]
author jwe
date Mon, 27 Oct 2003 15:41:55 +0000
parents 79df15d4470c
children 334a27c8f453
line wrap: on
line diff
--- a/src/OPERATORS/op-bm-bm.cc	Mon Oct 27 03:31:29 2003 +0000
+++ b/src/OPERATORS/op-bm-bm.cc	Mon Oct 27 15:41:55 2003 +0000
@@ -39,7 +39,7 @@
 
 // unary bool matrix ops.
 
-DEFNDUNOP_OP (not, bool_matrix, !)
+DEFNDUNOP_OP (not, bool_matrix, bool_array, !)
 
 DEFUNOP (transpose, bool_matrix)
 {
@@ -50,8 +50,8 @@
 
 // bool matrix by bool matrix ops.
 
-DEFNDBINOP_FN (eq, bool_matrix, bool_matrix, array, array, mx_el_eq)
-DEFNDBINOP_FN (ne, bool_matrix, bool_matrix, array, array, mx_el_ne)
+DEFNDBINOP_FN (eq, bool_matrix, bool_matrix, bool_array, bool_array, mx_el_eq)
+DEFNDBINOP_FN (ne, bool_matrix, bool_matrix, bool_array, bool_array, mx_el_ne)
 
 void
 install_bm_bm_ops (void)