Several fixes & changes:

* qtime and stime computed correctly
* Interactive mode and changing groups doesn't fail
* Interactive mode no longer uses a file to gather samples.
This commit is contained in:
Brian Fraser
2012-01-30 17:44:18 -03:00
parent ad552756b2
commit 73c1e466d7
12 changed files with 723 additions and 312 deletions

View File

@@ -58,7 +58,6 @@ sub group_by {
data => $args{data},
);
$self->clear_state() unless $self->interactive();
return;
}
@@ -138,7 +137,7 @@ sub compute_dev {
$devs ||= $self->compute_devs_in_group();
return $devs > 1
? "{" . $devs . "}"
: $self->{ordered_devs}->[0];
: $self->{_ordered_devs}->[0];
}
# Terrible breach of encapsulation, but it'll have to do for the moment.