protected SalsaRequest()

in graphjet-core/src/main/java/com/twitter/graphjet/algorithms/salsa/SalsaRequest.java [65:90]


  protected SalsaRequest(
      long queryNode,
      Long2DoubleMap leftSeedNodesWithWeight,
      LongSet toBeFiltered,
      int numRandomWalks,
      int maxRandomWalkLength,
      double resetProbability,
      int maxNumResults,
      int maxSocialProofSize,
      int maxSocialProofTypeSize,
      byte[] socialProofTypes,
      double queryNodeWeightFraction,
      boolean removeCustomizedBitsNodes,
      ResultFilterChain resultFilterChain) {
    super(queryNode, toBeFiltered, socialProofTypes);
    this.leftSeedNodesWithWeight = leftSeedNodesWithWeight;
    this.numRandomWalks = numRandomWalks;
    this.maxRandomWalkLength = maxRandomWalkLength;
    this.resetProbability = resetProbability;
    this.maxNumResults = maxNumResults;
    this.maxSocialProofSize = maxSocialProofSize;
    this.maxSocialProofTypeSize = maxSocialProofTypeSize;
    this.queryNodeWeightFraction = queryNodeWeightFraction;
    this.removeCustomizedBitsNodes = removeCustomizedBitsNodes;
    this.resultFilterChain = resultFilterChain;
  }