You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Words in names that are initialisms or acronyms (e.g. "URL" or "NATO") have a consistent case. (略) For identifiers with multiple initialized "words", use for example "xmlHTTPRequest" or "XMLHTTPRequest". https://github.com/golang/go/wiki/CodeReviewComments#initialisms
本家のC++はsnakecaseでクラス名mcf_graph[Cap, Cost], 関数名init_mcf_graphなどと書かれていますが、Nimではcamelcaseが推奨されているようでどっちに統一しようか迷っています。関数名は_や大文字小文字が区別されないので、どっちでも呼び出し可能なのでひとまずC++表記のままにしておきました。
問題は_と大文字小文字が区別されるobject名です。今のところ全部camelcaseでMCFGraphなどと書くようにしています。そういえばMCF(Min Cost Flow)などのように略語の場合はどうするかも迷っています。
どうしましょうかね。。。
The text was updated successfully, but these errors were encountered: