Skip to content

Commit

Permalink
util: update models universe to support ccf.
Browse files Browse the repository at this point in the history
  • Loading branch information
narekhovhannisyan committed Sep 8, 2023
1 parent 3a1c4f9 commit 8d66a4e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/util/models-universe.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
BoaviztaCpuImpactModel,
BoaviztaCloudImpactModel,
// CloudCarbonFootprint,
CloudCarbonFootprint,
ShellModel,
SciMModel,
SciOModel,
Expand Down Expand Up @@ -32,8 +32,8 @@ export class ModelsUniverse {
return BoaviztaCpuImpactModel;
case 'boavizta-cloud':
return BoaviztaCloudImpactModel;
// case 'ccf':
// return CloudCarbonFootprint;
case 'ccf':
return CloudCarbonFootprint;
case 'teads-curve':
return TeadsCurveModel;
case 'sci-m':
Expand All @@ -47,6 +47,7 @@ export class ModelsUniverse {

/**
* Returns plugin model.
* @todo Update function when plugin model will ready.
*/
private handPluginModel() {
return ShellModel;
Expand Down

0 comments on commit 8d66a4e

Please sign in to comment.