Кажется, это глупые вопросы.Но я понятия не имею, делаю это.Я подумал, что в CLion я могу настроить какой-нибудь xslt-файл для запуска xml-текста.Например,
<?xml-stylesheet type="text/xsl" href="hannimpeha.xsl" ?>
<settings>
<case>
<RNGSettings>
<RNG>RandomGeneratorStdLib</RNG>
</RNGSettings>
<agents>
<AgentCross>
<count>100</count>
<b1>25</b1>
<b2>100</b2>
<A1>0.1</A1>
<A2>0.3</A2>
<cash>1</cash>
<stock>1</stock>
</AgentCross>
</agents>
<dataItemCollectorClasses>
<DataCollectorPrice />
<DataCollectorExcessDemand />
</dataItemCollectorClasses>
<numsteps>10000</numsteps>
<outputname>example_Cross</outputname>
<deltaT>0.00004</deltaT>
<writerClass>WriterTXT</writerClass>
<excessDemandCalculatorSettings>
<excessDemandCalculatorClass>ExcessDemandCalculatorHarras</excessDemandCalculatorClass>
</excessDemandCalculatorSettings>
<priceCalculatorSettings>
<priceCalculatorClass>PriceCalculatorCross</priceCalculatorClass>
<theta>2</theta>
<marketDepth>0.2</marketDepth>
</priceCalculatorSettings>
<repetitions>5</repetitions>
<startPrice>1</startPrice>
</case>
</settings>
и файл xsl выглядят так:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:import href="Cross.xml">
</xsl:import>
</xsl:template>
</xsl:stylesheet>
Кажется, что он работает без ошибок.Дело в том, что это не дает мне никакого вывода либо.В чем проблема в приведенном выше вопросе?
cf) Этот вопрос изначально возникает после установки этого https://github.com/SABCEMM/ и запуска примеров внутри него.Конечная цель:
FinanceSimulation.cpp
под
/ input / examples / Cross.xml
состояние.