From: Francois Fleuret Date: Thu, 19 Jan 2017 10:28:58 +0000 (+0100) Subject: Cosmetics. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=dagnn.git;a=commitdiff_plain;h=a7a25093ee35439427cc2a085d63d0d22122e93c Cosmetics. --- diff --git a/dagnn.lua b/dagnn.lua index f9d6ff9..b82398c 100755 --- a/dagnn.lua +++ b/dagnn.lua @@ -69,6 +69,7 @@ function DAG:putInOrder() local nc local nl = 0 repeat + assert(nl < #self.modules, 'Cycle detected in the graph.') nc = 0 for nnma, node in pairs(self.node) do for _, nnmb in pairs(node.succ) do @@ -78,12 +79,11 @@ function DAG:putInOrder() end end end - assert(nl < #self.modules, 'Cycle detected in the graph.') nl = nl + 1 until nc == 0 for _, nnm in pairs(self.modules) do - assert(distance[nnm], 'Some modules are not connected to inputs') + assert(distance[nnm], 'Some modules are not connected to inputs.') end self.sorted = {} @@ -288,7 +288,7 @@ function DAG:updateOutput(input) end function DAG:updateGradInput(input, gradOutput) - assert(self.sorted, 'There has been a structure change before a DAG:updateGradInput') + assert(self.sorted, 'There has been a structure change before a DAG:updateGradInput.') self:nestedApply( function(nnm, go) @@ -323,7 +323,7 @@ function DAG:updateGradInput(input, gradOutput) table.insert(self.node[pred[1]].gradInputSucc, nnm.gradInput) elseif #pred > 1 then assert(torch.type(nnm.gradInput) == 'table', - 'Should have a table gradInput since it has multiple predecessors') + 'Should have a table gradInput since it has multiple predecessors.') for n = 1, #pred do table.insert(self.node[pred[n]].gradInputSucc, nnm.gradInput[n]) end @@ -339,7 +339,7 @@ function DAG:updateGradInput(input, gradOutput) end function DAG:accGradParameters(input, gradOutput, scale) - assert(self.sorted, 'There has been a structure change before a DAG:accGradParameters') + assert(self.sorted, 'There has been a structure change before a DAG:accGradParameters.') self:nestedApply( function(nnm, go) self.node[nnm].gradOutput = go end,