Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions code/drasil-example/dblpend/lib/Drasil/DblPend/Body.hs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import Data.Drasil.ExternalLibraries.ODELibraries (scipyODESymbols,
import Language.Drasil.Code (quantvar)
import Drasil.DblPend.ODEs (dblPenODEInfo)

import Drasil.System (SystemKind(Specification), mkSystem)
import Drasil.System (SystemKind(RunnableSoftware), mkSystem)

srs :: Document
srs = mkDoc mkSRS (S.forGen titleize phrase) si
Expand Down Expand Up @@ -104,7 +104,7 @@ mkSRS = [TableOfContents, -- This creates the Table of Contents
]

si :: System
si = mkSystem progName Specification [dong]
si = mkSystem progName RunnableSoftware [dong]
[purp] [background] [scope] [motivation]
symbolsAll
tMods genDefns dataDefs iMods
Expand Down
4 changes: 2 additions & 2 deletions code/drasil-example/glassbr/lib/Drasil/GlassBR/Body.hs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import Drasil.GlassBR.Unitals (blast, blastTy, bomb, explosion, constants,
glassTypes, glBreakage, lateralLoad, load, loadTypes, pbTol, probBr, stressDistFac, probBreak,
sD, termsWithAccDefn, termsWithDefsOnly, concepts, dataConstraints)

import Drasil.System (SystemKind(Specification), mkSystem)
import Drasil.System (SystemKind(RunnableSoftware), mkSystem)

srs :: Document
srs = mkDoc mkSRS (S.forGen titleize phrase) si
Expand All @@ -57,7 +57,7 @@ printSetting :: PrintingInformation
printSetting = piSys fullSI Equational defaultConfiguration

si :: System
si = mkSystem progName Specification
si = mkSystem progName RunnableSoftware
[nikitha, spencerSmith] [purp] [background] [scope] []
symbolsForSymbolTable
tMods [] GB.dataDefs iMods
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import Drasil.PDController.Unitals (symbols, inputs, outputs, inputsUC,
import Drasil.PDController.ODEs (pidODEInfo)
import Language.Drasil.Code (quantvar)

import Drasil.System (SystemKind(Specification), mkSystem)
import Drasil.System (SystemKind(RunnableSoftware), mkSystem)

naveen :: Person
naveen = person "Naveen Ganesh" "Muralidharan"
Expand Down Expand Up @@ -95,7 +95,7 @@ mkSRS

si :: System
si = mkSystem
progName Specification [naveen]
progName RunnableSoftware [naveen]
[purp] [background] [scope] [motivation]
symbolsAll
theoreticalModels genDefns dataDefinitions instanceModels
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import Drasil.Projectile.Unitals

import Theory.Drasil (TheoryModel)

import Drasil.System (SystemKind(Specification))
import Drasil.System (SystemKind(RunnableSoftware))

srs :: Document
srs = mkDoc mkSRS (S.forGen titleize phrase) si
Expand Down Expand Up @@ -132,7 +132,7 @@ projectileExamples = [S "ballistics" +:+ plural problem +:+ sParen (S "missiles"
si :: System
si = SI {
_sys = progName,
_kind = Specification,
_kind = RunnableSoftware,
_authors = [samCrawford, brooks, spencerSmith],
_purpose = [purp],
_background = [background],
Expand Down
4 changes: 2 additions & 2 deletions code/drasil-example/swhsnopcm/lib/Drasil/SWHSNoPCM/Body.hs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import Drasil.SWHSNoPCM.References (citations)
import Drasil.SWHSNoPCM.Unitals (inputs, constrained, unconstrained,
specParamValList)

import Drasil.System (SystemKind(Specification), mkSystem)
import Drasil.System (SystemKind(RunnableSoftware), mkSystem)

srs :: Document
srs = mkDoc mkSRS S.forT si
Expand Down Expand Up @@ -160,7 +160,7 @@ stdFields = [DefiningEquation, Description Verbose IncludeUnits, Notes, Source,

si :: System
si = mkSystem
srsSWHS Specification [thulasi]
srsSWHS RunnableSoftware [thulasi]
[purp] [introStartNoPCM] [scope] [motivation]
-- FIXME: Everything after (and including) \\ should be removed when
-- #1658 is resolved. Basically, _quants is used here, but
Expand Down
Loading