Ejemplo n.º 1
0
void ProteinsAnchorsSamplingSpace::show(std::ostream &s) const {
  for (std::map<std::string, IntsList>::const_iterator it = paths_map_.begin();
       it != paths_map_.end(); it++) {
    IntsList inds = it->second;
    s << it->first << " " << inds.size() << std::endl;
    for (unsigned j = 0; j < inds.size(); j++) {
      s << inds[j] << std::endl;
    }
  }
}
Ejemplo n.º 2
0
IntsList _pass_ints_list(const IntsList &in) {
  std::cout << "IntsList of length " << in.size();
  return in;
}