Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Fixed the index check to enable CQI 1 #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion simulte/src/corenetwork/binder/PhyPisaData.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class PhyPisaData
public:
PhyPisaData();
virtual ~PhyPisaData();
double getBler(int i, int j, int k){if (j==0) return 1; else return blerCurves_[i][j][k-1];}
double getBler(int i, int j, int k){if (j<0) return 1; else return blerCurves_[i][j][k-1];}
double getLambda(int i, int j){return lambdaTable_[i][j];}
int nTxMode(){return 3;}
int nMcs(){return 15;}
Expand Down