From: dpvc v. a. <we...@ma...> - 2008-09-01 11:53:42
|
Log Message: ----------- BACKPORT: changes from 1.35 Tags: ---- rel-2-4-patches Modified Files: -------------- pg/lib/Value: Matrix.pm Revision Data ------------- Index: Matrix.pm =================================================================== RCS file: /webwork/cvs/system/pg/lib/Value/Matrix.pm,v retrieving revision 1.22.4.2.2.1 retrieving revision 1.22.4.2.2.2 diff -Llib/Value/Matrix.pm -Llib/Value/Matrix.pm -u -r1.22.4.2.2.1 -r1.22.4.2.2.2 --- lib/Value/Matrix.pm +++ lib/Value/Matrix.pm @@ -169,6 +169,14 @@ Value::Error("Can't convert %s to %s",Value::showClass($x),Value::showClass($self)); } +# +# Don't inherit ColumnVector flag +# +sub noinherit { + my $self = shift; + return ("ColumnVector",$self->SUPER::noinherit); +} + ############################################ # # Operations on matrices |