-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Its done through the COCOMO model. You can find some details here https://github.com/boyter/scc#cocomo with the implementation being here https://github.com/boyter/scc/blob/master/processor/cocomo.go The wikipedia entry is worth looking at as well https://en.wikipedia.org/wiki/COCOMO and covers some of the ideas.
If you have a specific question about it please let me know and I will attempt to help. |
Beta Was this translation helpful? Give feedback.
Its done through the COCOMO model. You can find some details here https://github.com/boyter/scc#cocomo with the implementation being here https://github.com/boyter/scc/blob/master/processor/cocomo.go
The wikipedia entry is worth looking at as well https://en.wikipedia.org/wiki/COCOMO and covers some of the ideas.
scc
is setup to mimicsloccount
https://dwheeler.com/sloccount/ and its calculation where the average wage per year is set to 56286 (you can override this using the--avg-wage
command line option). The COCOMO project type by default is set toorganic
but you can change this to one of the other types or supply a totally custom calculation if you chose.If you have a specific quest…