(currentEvaluation: Evaluation, changes: Changes)
| 56 | } |
| 57 | |
| 58 | onFixpoint(currentEvaluation: Evaluation, changes: Changes) { |
| 59 | let name = currentEvaluation.databaseToName(this); |
| 60 | let commit = changes.toCommitted({[name]: true}); |
| 61 | if(commit.length === 0) return; |
| 62 | for(let evaluation of this.evaluations) { |
| 63 | if(evaluation !== currentEvaluation) { |
| 64 | evaluation.queue(commit); |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | toTriples() { |
| 70 | return this.index.toTriples(true); |
no test coverage detected