/*! 
     * \brief Compute the 1-norm of a vector.
     */
    static typename Teuchos::ScalarTraits<scalar_type>::magnitudeType 
    norm1( const vector_type& vector )
    {
	return vector.norm1();
    }