Lines Matching refs:graph_
415 explicit BacktrackingMaxBPMState(const Graph* g) : graph_(g) {} in BacktrackingMaxBPMState()
418 if (graph_->LhsSize() == 0 || graph_->RhsSize() == 0) { in Compute()
421 lhs_used_.assign(graph_->LhsSize(), kUnused); in Compute()
422 rhs_used_.assign(graph_->RhsSize(), kUnused); in Compute()
423 for (size_t irhs = 0; irhs < graph_->RhsSize(); ++irhs) { in Compute()
426 if (best_so_far_.size() == graph_->RhsSize()) break; in Compute()
454 for (size_t ilhs = 0; ilhs < graph_->LhsSize(); ++ilhs) { in RecurseInto()
458 if (!graph_->HasEdge(ilhs, irhs)) { in RecurseInto()
462 if (best_so_far_.size() == graph_->RhsSize()) { in RecurseInto()
465 for (size_t mi = irhs + 1; mi < graph_->RhsSize(); ++mi) { in RecurseInto()
473 const Graph* graph_; // not owned member in testing::gmock_matchers_test::__anonebb175b30111::__anonebb175b30211::BacktrackingMaxBPMState