Skip to content
Snippets Groups Projects
Commit 14aed3c6 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

+ debmsg;

improved self-description of CNodeVal.
parent b4aebf30
No related branches found
No related tags found
No related merge requests found
...@@ -198,6 +198,8 @@ string CRef3::ref_info() const ...@@ -198,6 +198,8 @@ string CRef3::ref_info() const
int CNode::tree_val_idx( const CContext& ctx, const string& name ) const int CNode::tree_val_idx( const CContext& ctx, const string& name ) const
{ {
cout << "DEBUG tvi:\n";
cout << tree_info() << "\n";
RObj val = tree_val( ctx ); RObj val = tree_val( ctx );
RObjInt pi = PCAST<const CObjInt>(val); RObjInt pi = PCAST<const CObjInt>(val);
if ( !pi ) if ( !pi )
......
...@@ -701,7 +701,7 @@ CCoord CNodeVal::node_coord( int k ) const ...@@ -701,7 +701,7 @@ CCoord CNodeVal::node_coord( int k ) const
string CNodeVal::tree_info() const string CNodeVal::tree_info() const
{ {
return "val[" + val->to_s() + "]"; return "val(" + val->to_s() + ")";
} }
...@@ -884,9 +884,13 @@ RObj CNodeCurveR2::curve_val_scalar( const CCurve * c ) const ...@@ -884,9 +884,13 @@ RObj CNodeCurveR2::curve_val_scalar( const CCurve * c ) const
RObj CNodePoint::tree_val( const CContext& ctx ) const RObj CNodePoint::tree_val( const CContext& ctx ) const
{ {
cout << "DEBUG tv: " << tree_info() << "\n";
auto ref3 = PCAST<const CRef3>(ref); auto ref3 = PCAST<const CRef3>(ref);
if( !ref3 ) if( !ref3 )
throw S("BUG: NodePoint has no Ref3"); throw S("BUG: NodePoint has no Ref3");
cout << "DEBUG tv: ref3: " << ref3->ref_info() << "\n";
cout << "DEBUG tv: ref3: tk: " << ref3->tk->tree_info() << "\n";
cout << "DEBUG tv: ref3: ti: " << ref3->ti->tree_info() << "\n";
if ( ctx.dim==CContext::_VI ) { if ( ctx.dim==CContext::_VI ) {
if ( ref->k_depends_on_i() || ref3->j_depends_on_i() ) { if ( ref->k_depends_on_i() || ref3->j_depends_on_i() ) {
if ( ctx.nv<0 ) if ( ctx.nv<0 )
......
...@@ -7,10 +7,9 @@ ...@@ -7,10 +7,9 @@
//! \file obj.cpp //! \file obj.cpp
//! \brief Data containers: CObj and its children. //! \brief Data containers: CObj and its children.
#include "defs.hpp"
#include <boost/format.hpp> #include <boost/format.hpp>
#include "../trivia/string_ops.hpp"
#include "defs.hpp"
#include "ptr.hpp" #include "ptr.hpp"
#include "obj.hpp" #include "obj.hpp"
...@@ -37,7 +36,7 @@ string CObjInt::to_s( int maxlen, int minlen, int prec ) const ...@@ -37,7 +36,7 @@ string CObjInt::to_s( int maxlen, int minlen, int prec ) const
{ {
// TODO: respect minlen // TODO: respect minlen
string form = str( format( "%%#%ii" ) % maxlen ); string form = str( format( "%%#%ii" ) % maxlen );
string ret = str( format( form ) % val ); string ret = triv::strip( str( format( form ) % val ) );
return ret; return ret;
} }
...@@ -52,7 +51,7 @@ string CObjDbl::to_s( int maxlen, int minlen, int prec ) const ...@@ -52,7 +51,7 @@ string CObjDbl::to_s( int maxlen, int minlen, int prec ) const
{ {
// TODO: respect minlen // TODO: respect minlen
string form = str( format( "%%#%i.%ig" ) % maxlen % prec ); string form = str( format( "%%#%i.%ig" ) % maxlen % prec );
string ret = str( format( form ) % val ); string ret = triv::strip( str( format( form ) % val ) );
return ret; return ret;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment