00001 #include <scil/column_entry.h>
00002
00003
00004 column_entry::column_entry(cons v, double c)
00005 {
00006 coeff=c;
00007 Cons=v;
00008 };
00009
00010
00011 int compare(const column_entry& t1, const column_entry& t2)
00012 {
00013 return compare(t1.Cons,t2.Cons);
00014 }
00015
00016
00017 ostream& operator<<(ostream& o,const column_entry&)
00018 {
00019 return o;
00020 };
00021
00022
00023 istream& operator>>(istream& i,const column_entry&)
00024 {
00025 return i;
00026 };
00027
1.2.16