Skip to content

Commit

Permalink
modify fonte.tex
Browse files Browse the repository at this point in the history
  • Loading branch information
LFMP committed Apr 25, 2018
1 parent 0115635 commit d35dd4f
Show file tree
Hide file tree
Showing 271 changed files with 99,315 additions and 276 deletions.
27 changes: 27 additions & 0 deletions Trabalho/LUA_CODING_STYLE
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Lua coding style for the graphdrawing library
=============================================

General naming rules and indentation:

* 2 spaces indentation
* variable_names_with_underscores
* namespaced.low_level_functions_with_underscores(foo, bar)
* CamelCaseClassNames
* CamelCaseClassNames.nameOfStaticFunctionLikeNewOrClone(foo, bar)
* CamelCaseClass:functionNamesLikeThis(foo, bar)
* never use global variables
* Use . for static functions and : for member functions

LuaDoc comments:

---
-- A function to do this and that.
--
-- @param first Description of the first parameter.
-- @param second Description of the second parameter.
--
-- @return This function returns something.
--
function myClass:myFunction(first, second)
...
end
20 changes: 20 additions & 0 deletions Trabalho/example_graph_for_ascii_displayer.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
graph [layered layout] {
Alice;
Bob;
Charly;
Dave;
Eve;
Fritz;
George;
Alice -> Bob;
Alice -> Charly;
Charly -> Dave;
Bob -> Dave;
Dave -> Eve;
Eve -> Fritz;
Fritz -> Alice;
George -> Eve;
George -> Fritz;
Alice -> George;
}

22 changes: 11 additions & 11 deletions Trabalho/fonte.aux
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,6 @@
\gdef\bonuspointsofq@xxxiii{0}
\gdef\pointsofq@xxxiv{0}
\gdef\bonuspointsofq@xxxiv{0}
\gdef\pointsofq@xxxv{0}
\gdef\bonuspointsofq@xxxv{0}
\PgInfo{question@30}{9}
\PgInfo{question30@object1}{9}
\newlabel{question@30}{{30}{9}}
Expand All @@ -337,15 +335,8 @@
\PgInfo{question@35}{9}
\PgInfo{question35@object1}{9}
\newlabel{question@35}{{35}{9}}
\PgInfo{question@36}{9}
\PgInfo{question36@object1}{9}
\newlabel{question@36}{{36}{9}}
\PgInfo{part@36@1}{9}
\PgInfo{question36@object2}{9}
\newlabel{part@36@1}{{a}{9}}
\PgInfo{part@36@2}{9}
\PgInfo{question36@object3}{9}
\newlabel{part@36@2}{{b}{9}}
\gdef\pointsofq@xxxv{0}
\gdef\bonuspointsofq@xxxv{0}
\gdef\pointsofq@xxxvi{0}
\gdef\bonuspointsofq@xxxvi{0}
\gdef\pointsofq@xxxvii{0}
Expand All @@ -354,6 +345,15 @@
\gdef\bonuspointsofq@xxxviii{0}
\gdef\pointsofq@xxxix{0}
\gdef\bonuspointsofq@xxxix{0}
\PgInfo{question@36}{10}
\PgInfo{question36@object1}{10}
\newlabel{question@36}{{36}{10}}
\PgInfo{part@36@1}{10}
\PgInfo{question36@object2}{10}
\newlabel{part@36@1}{{a}{10}}
\PgInfo{part@36@2}{10}
\PgInfo{question36@object3}{10}
\newlabel{part@36@2}{{b}{10}}
\PgInfo{question@37}{10}
\PgInfo{question37@object1}{10}
\newlabel{question@37}{{37}{10}}
Expand Down
Loading

0 comments on commit d35dd4f

Please sign in to comment.