Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Frida
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coenen, Joachim
Frida
Commits
14aed3c6
Commit
14aed3c6
authored
8 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
+ debmsg;
improved self-description of CNodeVal.
parent
b4aebf30
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
pub/lib/expr.cpp
+2
-0
2 additions, 0 deletions
pub/lib/expr.cpp
pub/lib/node.cpp
+5
-1
5 additions, 1 deletion
pub/lib/node.cpp
pub/lib/obj.cpp
+4
-5
4 additions, 5 deletions
pub/lib/obj.cpp
with
11 additions
and
6 deletions
pub/lib/expr.cpp
+
2
−
0
View file @
14aed3c6
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
pub/lib/node.cpp
+
5
−
1
View file @
14aed3c6
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
pub/lib/obj.cpp
+
4
−
5
View file @
14aed3c6
...
@@ -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
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment