December 27, 2008
I’m now trying to install Bugzilla 3.2 on Windows 2003 (.Net) server. For bugzilla administrators, we provide an article at bugzilla.org, but it seems slight old (bug 443451 or Bug 471249). This is a updates which i needed. First, I have to install another perl modules, and I could use GUI ppm perl module installer. (via […]
more...
December 18, 2008
As Justdave found (and mentioned at irc…), we can install required modules via yum like ./checksetup.pl –check-modules | grep install-module | grep -v — ‘–all’ | sed -e ‘s/.*module\.pl //’ -e ‘s/^/”perl\(/’ -e ‘s/$/\)”/’ | xargs yum -y install Except for CGI.pm module, which we require the newer version than the yum repository. For debian […]
more...
December 17, 2008
First, I’ve wrote some source code, #include <boost/numeric/ublas/matrix.hpp> #include <boost/numeric/ublas/triangular.hpp> #include <boost/numeric/ublas/vector.hpp> #include <boost/numeric/ublas/lu.hpp> #include <boost/numeric/ublas/io.hpp> // calc inverted-matrix ublas::matrix<double> mat_lu(lc_param); ublas::matrix<double> lc_conj; ublas::permutation_matrix<> lu_exc(lc_param.size1()); lc_conj = ublas::identity_matrix<double>(lc_param.size1()); ublas::lu_factorize(mat_lu, lu_exc); ublas::lu_substitute(mat_lu, lu_exc, lc_conj); and gcc 4.1.2 arises error, cc -Wall -Wextra -g -I./ -I../ -o hvltest.o -c hvltest.cc /usr/include/boost/numeric/ublas/lu.hpp: In function ‘typename M::size_type boost::numeric::ublas::lu_factorize(M&, PM&) […]
more...