Questions tagged [precedence-matrix]

2 questions
2
votes
1 answer

How to plot bupar Precedence Matrix using Plotly in Python?

I'm trying to plot a bupar Precedence Matrix as below using Plotly. So far I tried to plot a scatter plot as below: import plotly.express as px fig = px.scatter(df, y="Antecedent", x="Consequent", …
Ailurophile
  • 2,552
  • 7
  • 21
  • 46
1
vote
0 answers

How to define precedence constraint on cplex?

I have this constraint in my model to allow faces to be mined respecting precedences among them N[f]*sum(p in shovels)a[p][f][t]- sum[f' in precedences]m[f'][t]<=0; forall f in faces, t in periods. Here, N[f] is the number of precedences for face…