Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Prasetya, S.W.B. (Wishnu)
t3
Commits
06a8767e
Commit
06a8767e
authored
Feb 02, 2019
by
ISWB Prasetya
Browse files
adding few extra logging in G2
parent
ed8056cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Sequenic/T3/DerivativeSuiteGens/Gen2/G2.java
View file @
06a8767e
...
...
@@ -270,6 +270,20 @@ public class G2 {
remaining
=
timebudgetTracker
.
check
()
;
}
Analytics
.
save
(
config
.
dirToSaveSuites
,
null
,
null
);
int
Ntargets
=
0
;
int
NconstrTargets
=
0
;
int
NmethodADT
=
0
;
int
NmethodNonADT
=
0
;
for
(
SingleTarget
ST
:
worklist
.
allTargets
)
{
Ntargets
++
;
if
(
ST
.
target
instanceof
Constructor
)
NconstrTargets
++
;
else
if
(
ST
.
target
instanceof
Method
&&
ST
.
isADT
)
NmethodADT
++
;
else
NmethodNonADT
++
;
}
t3log
.
info
(
"#target constructors:"
+
NconstrTargets
+
", #target methdods:"
+
NmethodADT
+
", #target static methods:"
+
NmethodNonADT
+
", #tot. targets:"
+
Ntargets
)
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment